ionic 常見問題

重現添加platform時能夠禁止從新生成splash和icon

ionic cordova platform add android --no-resources

splash自定義圖片太大會mprocessDebugResources錯誤

\platforms\android\build.gradleandroid

android {
    aaptOptions {
        cruncherEnabled = false
        useNewCruncher = false
    }
window.screen.orientation.unlock();
window.screen.orientation.lock("portrait");
<preference name="orientation" value="portrait" />

微信插件要帶APPID安裝

不然打包後會有問題微信

cordova plugin add cordova-plugin-wechat --variable wechatappid=wx4a525790c75c4941f

cordova plugin add jpush-phonegap-plugin --variable APP_KEY=26218938532daa6c8446c2b15

獲取屏幕大小

var device_x = window.screen.width;
var device_y = window.screen.height;
相關文章
相關標籤/搜索