Skip to content

Forms : Add attachment fixes #425

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 35 commits into from
May 16, 2024
Merged
Show file tree
Hide file tree
Changes from 30 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
0fb1fba
make formelements observable
kaushikrw Apr 27, 2024
de2abfc
add attachment loading
kaushikrw Apr 29, 2024
ed60c35
revert un-needed changes
kaushikrw Apr 29, 2024
3f526a2
remove saver
kaushikrw Apr 29, 2024
880b8dd
Update AttachmentTile.kt
kaushikrw Apr 29, 2024
e8bfb1f
init add attachments work
kaushikrw Apr 30, 2024
9b6d8b2
added permissions for camera access
kaushikrw May 1, 2024
66a636e
add proper commits for attachments
kaushikrw May 2, 2024
8f3019b
added doc
kaushikrw May 2, 2024
98d9e43
Merge branch 'feature-branches/forms' into kaushik/forms/add-attachments
kaushikrw May 3, 2024
0893571
add editability of attachmentformelement
kaushikrw May 2, 2024
950923c
update doc
kaushikrw May 4, 2024
f4d169c
extract string resource
kaushikrw May 4, 2024
70bb4ef
add delete and rename attachments
kaushikrw May 6, 2024
9012d07
Merge branch 'feature-branches/forms' into kaushik/forms/delete-renam…
kaushikrw May 6, 2024
a13e6ed
initial fix
kaushikrw May 7, 2024
18fab1d
added doc
kaushikrw May 7, 2024
81a8253
fix imports
kaushikrw May 7, 2024
d6b865f
Update AttachmentTile.kt
kaushikrw May 7, 2024
df1abcc
Merge branch 'kaushik/forms/fix-state-ref' into kaushik/forms/delete-…
kaushikrw May 7, 2024
963bf0d
fixed rename dialog
kaushikrw May 7, 2024
598ca1d
Merge branch 'feature-branches/forms' into kaushik/forms/delete-renam…
kaushikrw May 7, 2024
0d679b2
fix conficts
kaushikrw May 8, 2024
d981e45
init working
kaushikrw May 8, 2024
88ca861
update authority
kaushikrw May 8, 2024
5642cde
fix capture uri and delete workaround
kaushikrw May 10, 2024
13ad099
make formattachmentstate loadable
kaushikrw May 10, 2024
f3d2fdd
Update AttachmentElementState.kt
kaushikrw May 10, 2024
5c043dd
Merge branch 'feature-branches/forms' into kaushik/forms/view-attachm…
kaushikrw May 13, 2024
d491c8f
fixed attachments recreation
kaushikrw May 13, 2024
7e1bcc5
fix scroll after new attachment is added
kaushikrw May 13, 2024
8ac8fcf
guard against index out of bounds
kaushikrw May 15, 2024
7bbd54b
guard null in dialog state fetch
kaushikrw May 15, 2024
ad7185c
Merge branch 'kaushik/forms/view-attachments' into kaushik/forms/add-…
kaushikrw May 15, 2024
3460072
Merge branch 'feature-branches/forms' into kaushik/forms/add-attachme…
kaushikrw May 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions toolkit/featureforms/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@

<application>
<provider
android:name="com.arcgismaps.toolkit.featureforms.internal.utils.AttachmentCaptureFileProvider"
android:authorities="com.arcgismaps.toolkit.featureforms.capturefileprovider"
android:name="com.arcgismaps.toolkit.featureforms.internal.utils.AttachmentsFileProvider"
android:authorities="${applicationId}.com.arcgismaps.toolkit.featureforms.attachmentsfileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/feature_forms_captured_attachments" />
android:resource="@xml/feature_forms_attachments" />
</provider>
</application>
</manifest>
Loading