Questions
How to block landscape mode without overload code
Hello,
We would like to knox if it's possible to activate landscape mode for tablet but not mobile without overload the code ? (both iOS and Android)
Thanks
Posted by Marion L 9 days ago
iOS in-app purchase - tax included?
Hello,
In app store connect we have defined price $89.99 and tax is set to `mach to parent app`If we want to pay - price is displayed as $89.99 but user is billed $100.34.
Is there any option to display price that includes tax in in-app purchase modal to indicate actual price (price + tax)?
Thank you!
Posted by Marta 10 days ago
request of App Exit Buttom
Need an function with exit app and open pop-up box including "DO YOU WANNA REALLY CLOSE" >> YES/NO "
Is it possible ?
Posted by noncapture 11 days ago
even i edit the source code its not letting me change the android package name
whats the issue?
Posted by Raj 12 days ago
How to fix invalid SSL Certificate
My Website have valid SSL certificate and i checked it already,
But in GoNative Android app , always show an popup error with Invalid SSL Certificate.
Is that anyway to fix this issue?
please help to me....
Posted by noncapture 12 days ago
App ePro Vins Richard and ePro Cafés Richard access to original sources
Hello,
We need to get back the Android original sources of theses two applications at their current state in production :
ePro Vins Richard
ePro Cafés Richard
Is it possible to get it from you ?
Thank you
Posted by Marion Letan 13 days ago
Device Info apnsToken in different format
Hello,
Based on your documentation, getting the device info should provide the apnsToken in iOS devices in this format:
apnsToken: '\<xxxxxxxx xxxxxxxx xxxxxxxx ... >', // only on iOS
However we are getting something like this:
IWIextqVBGOjA2ohZqGn3V7ZCElx7PS626AAgRS3iV4=
It seems to be encoded in BASE64 or similar, but we are not being able to decode it properly.
Can you help us to decode the token?
Thank you very much!
Regards
Posted by Rafael Cuevas 13 days ago
I didn't receive a dashboard / management link
As above
Posted by Sam 14 days ago
Photo upload via "Camera", vs "Gallery"
I made an application that does a file upload from a camera. Very common. When I select the "Gallery" option and upload from an existing photo, it works fine. If I select the "Camera" option, and take a new photo, the photo doesn't appear. The permissions appear to be fine.
I even made a test url on the site, to rule out that it wasn't my upload javascript. This the test javascript I am using.
```
<h1>File Upload Debugging</h1>
<input type="file" id="file-input">
<div id="file-info"></div>
<script>
const fileInput = document.getElementById('file-input');
const fileInfo = document.getElementById('file-info');
fileInput.addEventListener('change', function(event) {
const file = event.target.files[0];
if (file) {
const fileName = file.name;
const fileSize = file.size;
const fileType = file.type;
fileInfo.innerHTML = `
<p><strong>File Name:</strong> ${fileName}</p>
<p><strong>File Size:</strong> ${fileSize} bytes</p>
<p><strong>File Type:</strong> ${fileType}</p>
`;
} else {
fileInfo.innerHTML = '<p>No file selected.</p>';
}
});
</script>
```
```
```
```
```
```
```
Thoughts? How do I start debugging why I can upload via Gallery, but can't upload a new photo? I have an Galaxy Note 20
Posted by John Mccarthy 17 days ago
Google Play API level target
I received an email from the Google Play store saying that my app will need to target API Level 31+ by August 31. The last time I published the app through GoNative was last year and the API level stated on the Google Play console is 21+.
If I republish, the Android bundle, does GoNative automatically retarget the API level appropriately? If not, what steps do I need to take to ensure it will still be available in the Google Play store at that time?
Posted by KC 21 days ago