DoItWell.app

Results 6 comments of DoItWell.app

Same here. And, I got the error message as below. E/CarApp.Act: No handlers found for intent: Intent { act=android.car.template.host.RendererService }

some users response similar issue. However, we cannot reproduce the issue... :(

This locales list have no issue on Android. `supportedLocales: const [Locale('en'), Locale('zh', 'TW'), Locale('zh', 'HK'), Locale('zh', 'CN')]` However, in iOS. When we choose zh-CN, we will got deviceLocale called 'zh-Hans-TW'...

try Locale('zh', 'CN'), not Locale('zh-CN', 'CN')

ichart.finance.yahoo.com/table.csv only provide the prices till yesterday, not include today's price. So, I supplement today price from download.finance.yahoo.com/d/quotes.csv.

This might fix this issue. find out the block `if ([CLLocationManager locationServicesEnabled])` add background dispatch outside of the block ``` dispatch_async(dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), ^(void) { // the original code }...