//日期转时间戳
function transdate(time){var date new Date();date.setFullYear(time.substring(0, 4));date.setMonth(time.substring(5, 7) - 1);date.setDate(time.substring(8, 10));date.setHours(time.substring(11, 13));date.setMinutes(time.substring(14, 16));da…
Android studio 在打包时报错如下:
Lint found fatal errors while assembling a release target.
To proceed, either fix the issues identified by lint, or modify your build script as follows: ... android { lintOptions { checkReleaseBuild…