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!
dgtodo24
@dgtodo24
Posts made by dgtodo24
-
RE: Missing app icon on IOS build
-
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:
-
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:
Image expected on for the app icon:
Actual:
What is the solution for this?
Thank you in advance -
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!