Navigation

    Monaca & Onsen UI
    • Register
    • Login
    • Search
    • Tags
    • Users
    • Blog
    • Playground
    1. Home
    2. munsterlander
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups
    Save
    Saving

    munsterlander

    @munsterlander

    侍

    I'm a ColdFusion, Flex, PHP, JS on MySQL, Oracle, MSSQL DB developer. New to Monaca / Onsen and loving every minute of it! Feel free to reach out to me at cfuze@cfuze.com

    Check out many of my examples at: https://codepen.io/munsterlander/

    Check out my code samples at: https://github.com/munsterlander/Onsen-Examples

    89
    Reputation
    849
    Posts
    9226
    Profile views
    8
    Followers
    2
    Following
    Joined Last Online
    Website www.cfuze.com Location Pacific NW, USA Age 42

    munsterlander Follow
    侍 guest-publishers

    Posts made by munsterlander

    • RE: HTML5 Hybrid app, how to open location in user's default map app

      @gb Can you post your JS code?

      posted in Monaca Tools
      munsterlander
    • RE: Newbie Question

      @gb All products are in continuous development. The forums have died down significantly with the exit of their community relations manager. The discord is more active, but still its community driven. Regardless, Onsen is open source so you will always have the product. Asial, the parent company, is very much alive.

      posted in Monaca Tools
      munsterlander
    • Cloud IDE - Disable Docking

      Is there anyway or can it be added to disable the file docking? Currently, if I double-click by accident on the tab with the file I am working on, it switches doc position which drives me nuts. I would love if I could toggle this off in the workspace configuration page.

      posted in Monaca Tools
      munsterlander
    • RE: How to change the color of the badge in ons-tab?

      @matthewk5 Just use:

      .tabbar__badge.notification {
      background-color: blue;
      }
      
      posted in Onsen UI
      munsterlander
    • RE: Camera cannot be authorized

      @munsterlander Solved: https://stackoverflow.com/questions/57838790/camera-works-in-monaca-debugger-but-not-in-debug-build/57847276#57847276

      posted in Developer Corner
      munsterlander
    • Camera cannot be authorized

      So, I am working on a new app that uses the camera for real-time video OCR. Anyway, the app works great in the Monaca debugger. When I then do a debug or release build, the camera will not work. Upon initial load, the app prompts to allow camera but the permission response is permanently denied even after hitting allow. I have tried the Android permissions plugin, diagnostics plugin, and the custom config plugin, but neither can get around this. I remember we encountered this once before, but I cannot remember the solution. Does anyone have an idea?

      posted in Developer Corner
      munsterlander
    • RE: Request: template of OnsenUI + VueJS

      @khemry While in general I agree, I am confused though as to why it works on CodePen, for example, this very basic example: https://codepen.io/munsterlander/pen/rWWvNN

      posted in Monaca Tools
      munsterlander
    • RE: Build is Successful, but postBuild fails - Crosswalk, getUserMedia, and TrackStartError

      @khemry If you are looking at the current project, it is significantly different as I had to work around that error. The current code base was set for export so I could do a local cordova build and consequently the splash screen images are different.

      posted in Monaca Tools
      munsterlander
    • RE: ons-navigator

      @Faisal-Naseer It should be outside of the ons-ready function. Here is a working example: https://codepen.io/munsterlander/pen/JWvNRX

      posted in JavaScript Core
      munsterlander
    • Release build removes camera permission

      So based on the other thread, but completely different. I have figured out the issue. Doing a release build is removing the CAMERA permission in the AndroidManifest.xml. I am using this in the config.xml:

      <preference name="android-manifest/uses-permission/[@android:name='android.permission.CAMERA']/@android:name" delete="true" />
      <preference name="android-manifest/uses-permission/[@android:name='android.permission.READ_EXTERNAL_STORAGE']/@android:name" delete="true" />
      

      READ_EXERNAL_STORAGE makes it into the APK, but not camera. I verified this by decompiling the APK.

      I have confirmed this is an issue with Monaca remote build and the custom config plugin. Although the Monaca docs state the aforementioned code will work, the docs for the plugin state that remote builds will fail. Not certain the exact cause here, but I did a straight Cordova local build with the exact same plugins minus the Monaca ones and doing a release build works exactly like it is supposed too.

      Since I am using navigator.mediaDevices.getUserMedia as I need webRTC access, I am using this plugin to request permissions at runtime: https://github.com/dpa99c/cordova-diagnostic-plugin. There is some issue with the remote build and custom-config plugin that is removing the camera permission but not the others. Interesting bug none-the-less and local building with a traditional cordova project solves the issue.

      posted in Monaca Tools
      munsterlander