Signed-off-by: parneet-guraya <gurayaparneet@gmail.com>
This commit is contained in:
parneet-guraya 2024-10-21 05:07:43 +05:30
parent c53ad43520
commit 8d76cfa4d9
No known key found for this signature in database
GPG key ID: 63B807C4B2A9064B
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@ public interface Constants {
String DEFAULT_FOLDER_NAME = "CommonsContributions"; String DEFAULT_FOLDER_NAME = "CommonsContributions";
/** /**
* Provides the request codes utilised by the FilePicker * Provides the request codes for permission handling
*/ */
interface RequestCodes { interface RequestCodes {
int LOCATION = 1; int LOCATION = 1;

View file

@ -609,7 +609,7 @@ public class UploadMediaDetailFragment extends UploadBaseFragment implements
* This method is called to start the image editing activity for a specific UploadItem. * This method is called to start the image editing activity for a specific UploadItem.
* It sets the UploadItem as the currently editable item, creates an intent to launch the * It sets the UploadItem as the currently editable item, creates an intent to launch the
* EditActivity, and passes the image file path as an extra in the intent. The activity * EditActivity, and passes the image file path as an extra in the intent. The activity
* is started with a request code, allowing the result to be handled in onActivityResult. * is started using resultLauncher that handles the result in respective callback.
*/ */
@Override @Override
public void showEditActivity(UploadItem uploadItem) { public void showEditActivity(UploadItem uploadItem) {