Alex Shen

Results 9 comments of Alex Shen

> 同意隐私协议前不要在Application中初始化SDK,也不要调用任何插件接口 请问具体怎么做到呀在RN里面 需要动原生代码嘛?

> > > 同意隐私协议前不要在Application中初始化SDK,也不要调用任何插件接口 > > > > > > 请问具体怎么做到呀在RN里面 需要动原生代码嘛? > > 检查下自己应用,同意隐私协议前不要调用任何插件接口,任何接口都会导致SDK初始化 好的谢谢

我也发现这个好像不是很好用。其实你完全可以自己写一个计时器,很简单。 比如: `setInterval(() => { aGeolocation.getCurrentPosition(/**Your code here */); }, 1000)`

Yes you can just follow this: https://github.com/ollija/react-native-sortable-grid/issues/8

It's actually doable with the current version since the author added "add" and "delete" support so you can pretty much do whatever you want... https://github.com/ollija/react-native-sortable-grid/issues/8

This actually can be overcome by using "getDateStr" instead of using "date". getDateStr takes Date as an input, you can use that input with your favorite library (eg momentjs) to...

The only way language works for me is like this: `import moment from "moment"; if (getPrimaryLanguage() === "zh") {require("moment/locale/zh-cn")};` Define getPrimaryLanguage() yourself use library like i18njs...

> onDateChange send two params, use the second it's work for me: > > ``` > onDateChange={(dateNotGoog, dateGood) => { > this.refresh(dateGood) > }} > ``` Saved my day!!!!