Navigation

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

    dgtodo24

    @dgtodo24

    1
    Reputation
    4
    Posts
    433
    Profile views
    0
    Followers
    1
    Following
    Joined Last Online

    dgtodo24 Follow

    Posts made by dgtodo24

    • RE: Missing app icon on IOS build

      No, no resolution yet. I’m paying a plan for this and I didn’t have any response yet, so I’ll cancel that. TERRIBLE SERVICE!

      posted in Monaca Tools
      D
      dgtodo24
    • RE: Error when building android app: "Upload failed, your app currently targets API level 26 and must target API level 28"

      In the end I fixed it by going to the cordova pluging configuration section and updating there the cordova version to 9.0.0:

      0_1573914391523_cordova.png

      posted in Monaca Tools
      D
      dgtodo24
    • Missing app icon on IOS build

      When I build the debug app for IOS and installed on my iphone, I only see the default cordova icon, instead of the image that I uploaded on Monaca Cloud IDE.

      How can I see the icon image correctly?

      I already upload the .png images without success:
      0_1573866120239_icons_that_i_upload.png

      Image expected on for the app icon:
      0_1573866178378_expected.png

      Actual:
      0_1573866191525_actual.png

      What is the solution for this?
      Thank you in advance

      posted in Monaca Tools
      D
      dgtodo24
    • Error when building android app: "Upload failed, your app currently targets API level 26 and must target API level 28"

      When I’m going to upload the android build to google play store, it throws me an exception:

      “Upload failed
      Your app currently targets API level 26 and must target at least API level 28 to ensure it is built on the latest APIs optimized for security and performance. Change your app’s target API level to at least 28.”

      Even when I have installed cordova-android 8.1.0, and I have specify the API level on my config.xml file.

      Here is my config.xml file:

      <?xml version='1.0' encoding='utf-8'?>
      <widget id="..." version="1.0.0" xmlns="http://www.w3.org/ns/widgets">
          <name>...</name>
          <description />
          <author value="..." />
          <access origin="*" />
          <content src="index.html" />
          <preference name="loglevel" value="DEBUG" />
          <preference name="AndroidLaunchMode" value="singleTop" />
          <preference name="BackgroundColor" value="0xffffffff" />
          <preference name="DisallowOverscroll" value="true" />
          <preference name="ErrorUrl" value="" />
          <preference name="Fullscreen" value="false" />
          <preference name="KeepRunning" value="true" />
          <preference name="monaca:WebViewEngine" value="default" />
          <preference name="SplashScreen" value="screen" />
          <preference name="SplashScreenDelay" value="1000" />
          <preference name="Orientation" value="default" />
          <preference name="monaca:DisableCookie" value="false" />
          <preference name="monaca:AndroidIsPackageNameSeparate" value="false" />
          <preference name="AllowInlineMediaPlayback" value="false" />
          <preference name="AutoHideSplashScreen" value="true" />
          <preference name="BackupWebStorage" value="cloud" />
          <preference name="EnableViewportScale" value="false" />
          <preference name="FadeSplashScreen" value="true" />
          <preference name="FadeSplashScreenDuration" value="250" />
          <preference name="KeyboardDisplayRequiresUserAction" value="true" />
          <preference name="MediaPlaybackRequiresUserAction" value="false" />
          <preference name="ShowSplashScreenSpinner" value="false" />
          <preference name="SuppressesIncrementalRendering" value="false" />
          <preference name="TopActivityIndicator" value="gray" />
          <preference name="GapBetweenPages" value="0" />
          <preference name="PageLength" value="0" />
          <preference name="PaginationBreakingMode" value="page" />
          <preference name="PaginationMode" value="unpaginated" />
          <preference name="ios-XCBuildConfiguration-TARGETED_DEVICE_FAMILY" value="1,2" />
          <feature name="App">
              <param name="android-package" value="org.apache.cordova.App" />
          </feature>
          <feature name="LocalStorage">
              <param name="ios-package" value="CDVLocalStorage" />
          </feature>
          <icon src="res/app_icon.png" />
          <platform name="android">
              <preference name="android-targetSdkVersion" value="28" />
          </platform>
          <plugin name="cordova-custom-config" spec="^5.0.2" />
          <plugin name="cordova-plugin-splashscreen" spec="^5.0.1" />
          <plugin name="cordova-plugin-whitelist" spec="^1.3.3" />
          <plugin name="monaca-plugin-monaca-core" spec="^3.2.1" />
          <plugin name="cordova-plugin-inappbrowser" spec="^3.1.0" />
      </widget>
      
      Any help will be appreciated, thanks!
      posted in Monaca Tools
      D
      dgtodo24