我在sshite的Crashlytics中遇到了以下错误但在我的整个应用程序中我没有使用sqlite我只使用了realm数据库。 Plz建议遗漏任何东西。
<dom-module id="sc-testpage">
<template>
<button on-tap="changeColor">Click here to change color</button>
</template>
<script>
Polymer({
is: 'sc-testpage',
changeColor: function() {
var targetText = this.$.sc-navdrawer.$.test;
console.log(targetText);
targetText.classList.add("changed");
}
});
</script>
</dom-module>