chore(eslint): bump package & apply eslint fix (#955)

This commit is contained in:
エリス
2020-04-15 12:36:40 +09:00
committed by GitHub
parent 43fdaa91a3
commit f86044e6ce
8 changed files with 59 additions and 60 deletions
+2 -2
View File
@@ -51,11 +51,11 @@ class AndroidManifest {
}
getPackageId () {
return this.doc.getroot().attrib['package'];
return this.doc.getroot().attrib.package;
}
setPackageId (pkgId) {
this.doc.getroot().attrib['package'] = pkgId;
this.doc.getroot().attrib.package = pkgId;
return this;
}