Tim Krins
Tim Krins
I have a feeling that it is due to the single quotes rather than double quotes. Will do more research.
...it's because of the single quotes where there should be double quotes. See my pull request referenced above.
one way to do this (outside of the GUI) is to find your `Helm.config` file, open with a text editor, and empty the `midi_learn` array.
I did pull that branch, as I noticed the tests were green, and wanted to run the full CI matrix on this PR. I actually had a quick look at...
I just noticed some discussion on another issue about the default column value `{}` being *required* in JSON stores... MySQL doesn't have defaults for JSON columns. What should I be...
The call stack error seems to be caused by the Diff function in `util/omit.ts`, because it no longer errors when switched to the code that was commented out (in support...
I managed to compile with 3.7 in my own fork by changing some types to `any`. Obviously, this is wrong, but it might shed some light onto what is needed....
So, as I am living this experience, maybe my personal journey could help! I set the device administrator to my application. However - unlike the default application, my application has...
Also, another thing to note. When you have installed and set your application to device administrator, it seems you cannot re-install (or debug) your application. I changed my mind about...
I found some interesting information at _http://www.sureshjoshi.com/mobile/android-kiosk-mode-without-root_ You can use ```mDevicePolicyManager.clearDeviceOwnerApp("com.example.yourapplication");``` somewhere in your code that will unset the device owner. You should then be able to re-debug or develop...