POST
|
Patrick, Thank you for confirming that it is working on your side. Yes, that’s message is expected when there is a new apps that are signed with new Enterprise Certificate that has never been “trusted” in the device. In your case, it was done through MDM in the past. Thank you, Erwin
... View more
10-01-2021
12:40 PM
|
0
|
0
|
2646
|
POST
|
Patrick, If you can not wait until we release AppStudio 5.2 in November, we have just made an update to the Early Adopter Community to release AppStudio 5.2 Beta that includes the fix for this issue. Here are the steps: - Download AppStudio 5.2 from Early Adopter Community, https://earlyadopter.esri.com/welcome/default.html?key=AppStudio - Build your app using Cloud Make with Enterprise Certificate - Make sure to remove the URL in the Cloud Make page settings, this is to make sure you are hitting the right default URL that includes the fix. - Perform Cloud Make for iOS and test your app. Please let me know if this is working. Erwin.
... View more
09-30-2021
05:23 PM
|
0
|
1
|
2666
|
POST
|
@GKmieliauskas This is weird, I am not able to reproduce this issue on my end. What version of AppStudio Desktop are you running? Thank you, Erwin
... View more
09-29-2021
04:04 PM
|
0
|
2
|
1492
|
POST
|
@DinubaAGOLAdmin I think these two posts should help you with GlobalID related issue in Quick Report. https://community.esri.com/t5/arcgis-appstudio-questions/quickreport-template-not-attaching-files/td-p/874847 https://community.esri.com/t5/arcgis-appstudio-questions/quick-report-new-feature-upload-error-after-adding/m-p/860102#M3009 Thank you, Erwin
... View more
09-29-2021
04:02 PM
|
0
|
0
|
701
|
POST
|
@GarrettRSmith If there is any changes in the feature layer specification, you don't need to re-publish the app, you would need the end-users to press Reset in the Quick Report app. From the hamburger menu on the top right corner -> Settings -> Reset. Thank you, Erwin
... View more
09-29-2021
03:59 PM
|
0
|
0
|
718
|
POST
|
@PatricWiström This is a known bug with AppStudio 5.1, BUG-000143157, we currently have the fixes planned in AppStudio 5.2 that is coming in November. This issue only happening when you sign with Enterprise Certificate and running it in iOS 15. In the meantime, would it be okay for you to sign with a store certificate and use TestFlight to distribute? Thank you, Erwin.
... View more
09-29-2021
03:51 PM
|
0
|
3
|
2699
|
POST
|
@DustinBaumbach1 I think the best way to skip the PickTypePage is to remove the subtypes in your feature layer, there is already a logic in QuickReport template to skip the PickTypePage when you don't have the subtypes in the feature layer. As shown in QuickReportApp.qml ~line 1881 and ~line1890. We can not easily remove this check since the value type is required if the feature layer has subtypes. I don't think the submit button is tied into the attributes, but please check if there are any required fields in your feature layer. I hope this is helpful, Erwin.
... View more
09-15-2021
03:24 PM
|
0
|
0
|
709
|
POST
|
@DustinBaumbach1 If there is no attachment in the feature layer, the "AddPhotoPage" will be skipped and it will go to AddDetailsPage after the map page, as shown in the code at QuickReportApp.qml ~ line 2486 inside the Component refineLocationPage onNext. You can also make just comment the section to simply call stackview.showAddDetailsPage() in the onNext. This works using the sample data where attachment is not required. I hope this is helpful, Erwin
... View more
09-15-2021
03:11 PM
|
0
|
0
|
723
|
POST
|
@geomappsdev Survey123 template is not missing, but they are not there because there is no Survey123 version that is compatible with AppStudio 5.1. The team is currently is working on releasing Survey123 3.13 that AppStudio 5.1 compatible, and as soon as it is released, the source code will be made available in AppStudio 5.1 Thank you, Erwin.
... View more
09-01-2021
03:46 PM
|
1
|
1
|
1356
|
POST
|
@RyanGay I just tried building an Android Cloud Make as shown in your screenshot, and it is successful. Can you try again? or maybe try a simpler app to see if there is something wrong with that app or something in appinfo.json? Erwin.
... View more
09-01-2021
03:45 PM
|
0
|
0
|
802
|
POST
|
@YukiOZAWA2 Are you able to share the feature layer that you are using? It sounds like this is a bug, and I think for something like this, it is best to work Esri Technical Support, so that we can get it triaged and submitted properly. Erwin.
... View more
09-01-2021
03:30 PM
|
0
|
1
|
816
|
POST
|
@DustinBaumbach1 So it sounds like the issue is in the custom code, I can't make out what's wrong from the information that you have provided. I would suggest trying to debug your custom code and see what is going on. Here's the debugging video we made using Qt Creator, https://youtu.be/FzZd3eGc1jA?t=36 or you can also print the console log messages. Thank you, Erwin.
... View more
09-01-2021
03:26 PM
|
0
|
2
|
4053
|
POST
|
@DustinBaumbach1 We apologize that you are having an issue with Quick Report 5.1 template. Is the out of the box Quick Report 5.1 template working (submitting a new feature) against this feature layer? We make updates to the template at every release to keep up with new features and bug fixes, and sometimes the customization that you did in the previous version can not be simply "copied-pasted" over. It might require some adjustment with the new code. If you help us point out how your custom code works and where exactly it is throwing an error (and what the error messages are) and we could probably help. Did you do the customization? I think the developer who did the customization is the best person to help with this. Thank you, Erwin
... View more
08-31-2021
06:17 PM
|
0
|
4
|
4059
|
BLOG
|
The AppStudio Framework, or AppFramework, contains platform-neutral QML components to allow you to create apps that work across multiple platforms. The components that the AppFramework provides are intended for use in providing base functionality for your app, including managing file paths, networking interfaces, and image manipulation, as well as tools specific to working within the AppStudio environment. The AppFramework library is unique in that it has features and capabilities that are neither natively provided by the underlying Qt framework nor the ArcGIS Runtime but are necessary and commonly used for developing apps. We are excited to share new features and enhancements added to AppStudio 5.1 release with you in this blog post. Enhancement in AppFramework: - We have added new capabilities to monitoring battery levels, charging state, and power source in Battery component. - We have added support for reading data streams from Bluetooth devices without line breaks, by setting the `readWithNoNewline` to true, the device will set the readData property as soon as streams of characters are available, and will not wait for a newline character as it does by default. - The FileFolder component now contains methods to move files into the device's trash or recycling bin by using `moveFileToTrash` method. - In the NetworkRequest component, the HTTP DELETE request can now support a request body. - On Windows, stability has been improved for the `isOnline` property in the Networking component. Deprecations and removals in AppFramework: - The SensorPort component has been removed from the AppFramework Sensors plugin. - The AppFramework component NetworkConfiguration has been deprecated and will be removed from a future release. Other bug fixes and enhancements are listed in this blog post. Learn more about AppStudio: New to AppStudio? Check out this website to learn more about what ArcGIS AppStudio can do to you and your organization. Check out our recent workshop recordings to get started with creating native apps using AppStudio. Let us know about your creations built using AppStudio to be featured in AppStudio Showcase Gallery. Provide your ideas and suggestions to us on the ArcGIS Ideas site. Follow us on Twitter @ArcGISAppStudio to keep up-to-date on the latest information. The AppStudio team periodically hosts workshops and webinars; please sign up for the AppStudio newsletter if you are interested in information regarding AppStudio events.
... View more
08-31-2021
02:52 PM
|
0
|
0
|
690
|
POST
|
@AnkurPandey_1993 You are probably using the ClientID from a different Organization account. You need to use or generate a ClientID from the ArcGIS Enterprise that you want to login to, and use it in your custom AppStudio app or custom Survey123. Thank you, Erwin.
... View more
08-24-2021
06:23 PM
|
0
|
0
|
1324
|
Title | Kudos | Posted |
---|---|---|
1 | 07-07-2020 01:26 PM | |
1 | 10-27-2020 10:33 AM | |
1 | 12-06-2021 10:36 AM | |
1 | 10-01-2021 12:53 PM | |
1 | 08-24-2021 06:15 PM |
Online Status |
Offline
|
Date Last Visited |
12-08-2021
03:08 PM
|