|
POST
|
Brent, Which version of the Quick Report template are you using? import ArcGIS.AppFramework.Controls 1.0 It is being deprecated, I found one occurrence on QuickReport/widgets/Icon.qml line 8, that does not seem to affect anything after removing it. You can remove that import statement. AppStudio Framework—ArcGIS AppStudio | Documentation Also if you are using the Quick Report template that is older than 4.3, there is a breaking change on EmailComposer, you need to change the "onComposeError" with "onErrorChanged". EmailComposer was in Beta, and now it is released with a better error handling patterns. They are QuickReport/pages/LandingPage.qml Apps that previously used the EmailComposer onComposeError signal will have to be rebuilt using the new onErrorChanged signal. Without this change, the app will fail to launch. What's new in AppStudio—ArcGIS AppStudio | Documentation I hope this is helpful, Erwin.
... View more
09-30-2020
10:11 AM
|
0
|
5
|
3507
|
|
POST
|
Paul, This is using ArcGIS Runtime SDK for Qt inside ArcGIS AppStudio. You can grab the source code of this sample if you search and download this sample using AppStudio Player in your desktop, then this would appear in your AppStudio Dekstop on the same computer. They share the same folder. The above questions should be able to be added to the application courtesy of the ArcGIS Runtime SDK. The track is a feature in a feature layer, that is available locally and can be uploaded to a feature layer or any form of database you prefer. The symbology of the track can also be changed to your liking as long as ArcGIS Runtime SDK supports it. Thank you, Erwin
... View more
09-29-2020
04:09 PM
|
0
|
0
|
2250
|
|
POST
|
The link you provided is pointing to ArcGIS Runtime SDK for .NET, we are using ArcGIS Runtime SDK for Qt. Also I think we recently add a sample called "Create, Edit and Save KML File", that is based on this sample from Runtime, Display KML | ArcGIS for Developers
... View more
09-29-2020
09:57 AM
|
0
|
0
|
1805
|
|
POST
|
I see, sorry about that. The web map and the feature layer may have been deleted. I do have another sample, it is called "Breadcrumb Tracking", that is shared publicly, you can search it in AppStudio Player.
... View more
09-28-2020
06:07 PM
|
0
|
2
|
2250
|
|
POST
|
Hey Paul, Are you talking about this sample? GitHub - esoekianto/simpletrackingapp: Simple Tracking App made using AppStudio for ArcGIS . It should still work. Erwin
... View more
09-28-2020
02:54 PM
|
0
|
5
|
2250
|
|
POST
|
Brent, glad to hear this. We apologize for the inconvenience, this normally does not happen, but it happens to have a breaking change on 4.3. We released AppStudio 4.3 last week, so we recommend that you upgrade the AppStudio Desktop 4.2 to 4.3, since the Cloud Make version has been upgraded to 4.3. Erwin.
... View more
09-28-2020
09:24 AM
|
0
|
3
|
3180
|
|
POST
|
I see. I think it's a little bit tricky to debug it since it is going to your own server and your own PHP code. Those code are created to upload attachment specifically to ArcGIS Feature Service. I am not sure if your server and PHP code have the same specs. We are not using PHP in ArcGIS Feature Service. My recommendation would be to first try it using an application like the Postman and then maybe try building a simple independent javascript function that would do that using XMLHttpRequest, XMLHttpRequest - Web APIs | MDN after that technically the same code that uses XMLHttpRequest should work inside AppStudio app.
... View more
09-25-2020
03:40 PM
|
0
|
1
|
1735
|
|
POST
|
Ryan, After speaking with folks for Esri Technical Support, we have tested and reproduced the issue you presented. and I think we figured it out. In order to share the link for iOS device, the AppStudio OTA website, AppStudio OTA, and the "Share" button needs to be opened from another iOS device for the bit.ly link to download and install the IPA file. If the "Share" button is clicked from a non-iOS device, then the link will only download the IPA without installing it. Thank you, Erwin
... View more
09-25-2020
11:19 AM
|
0
|
1
|
2338
|
|
POST
|
Is there a reason you are doing this instead of putting this app in the App Store? Can I entertain you with an idea of using AppStudio Player for other people to test and use your app instead of going to the App Store or sharing the link like that? https://community.esri.com/groups/appstudio/blog/2020/08/12/use-appstudio-player-profiles-to-showcase-your-native-apps-and-web-apps
... View more
09-24-2020
04:12 PM
|
0
|
0
|
2338
|
|
POST
|
Manoj, I don't quite understand the entire issue. So, are you using the out of the box Quick Report template? or did you modify QuickReport->controls->FeatureServiceManager->function addAttachement()? Or is it a custom app with code that you get from the Quick Report template? if yes, maybe you can share the code snippets. Is this being uploaded to ArcGIS Online or Enterprise? Or going to 3rd party server? In general, NetworkRequest is created so that you can send a request to ArcGIS Online or Enterprise easier with all the properties and settings set by default. You can take a look at this here, https://developers.arcgis.com/appstudio/api-reference/qml-arcgis-appframework-networkrequest/ or use the Javascript XMLHttpRequest object, XMLHttpRequest - Web APIs | MDN Thank you, Erwin
... View more
09-24-2020
10:08 AM
|
0
|
3
|
1735
|
|
POST
|
Brent, I have a couple of questions. When did you build it? Using 4.2 or 4.3? We just released the AppStudio 4.3, and we want to try to build it using 4.3. Did you run it in the AppStudio 4.3 AppRun on Desktop? There's a chance this is related to EmailComposer OnComposeError breaking change. What's new in AppStudio—ArcGIS AppStudio | Documentation Apps that previously used the EmailComposer onComposeError signal will have to be rebuilt using the new onErrorChanged signal. Without this change, the app will fail to launch. For the Quick Report template that was built before 4.3, you can make the changes in QuickReport/pages/LandingPage.qml around line 675. In general, the white screen issue means that there is an issue with some of the QML components. It could be a missing import statement, and it could be something that we made sure that it is working on the Player since a lot of people are using Player for a distribution method. Especially the EmailComposer breaking change issue, we made sure that it is not throwing an error in the Player but if you are doing a Cloud Make, you would need to make the changes and would have seen the error message when running on AppRun in AppStudio Desktop. Thank you, Erwin
... View more
09-24-2020
09:50 AM
|
2
|
5
|
3180
|
|
POST
|
Ryan, That is weird. I just tested this, and I was able to install the IPA in another iOS device using the bit.ly link on from the "Share" button. Please note that the link is only valid for 30 minutes. You can also try hosting that file yourself by following this link, iOS - Creating an Installation Link for Your Enterprise App – Mag+ Designd Support Thank you, Erwin
... View more
09-23-2020
04:06 PM
|
0
|
2
|
2338
|
|
POST
|
Mark, There are times when you want to handle and maintain your own login/user registration system in your own database, and display public maps from ArcGIS. This scenario is often used when there are other user-related functionalities that are not covered in ArcGIS, when maps or GIS is not the main functionality of the application. I hope this clarifies things. Erwin.
... View more
09-22-2020
09:04 AM
|
0
|
2
|
4495
|
|
POST
|
Krish, It is a breaking change that is introduced in 4.3, on EmailComposer, you need to change the "onComposeError" with "onErrorChanged". EmailComposer was in Beta, and now it is released with a better error handling patterns. Apps that previously used the EmailComposer onComposeError signal will have to be rebuilt using the new onErrorChanged signal. Without this change, the app will fail to launch. What's new in AppStudio—ArcGIS AppStudio | Documentation Thank you, Erwin
... View more
09-21-2020
09:42 AM
|
2
|
0
|
952
|
|
POST
|
Mark, On top of Johnathan Hasthorpe answer above, I just want to add, AppStudio 4.3 is going to be released this week that will include QuickCapture 1.6 template. As of today, AppStudio 4.3 is currently in Beta, available in Early Adopter Community, https://community.esri.com/groups/appstudio/blog/2020/07/13/introducing-arcgis-appstudio-43-beta Thank you, Erwin.
... View more
09-14-2020
09:48 AM
|
2
|
1
|
3544
|
| 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
|