Skip to content

Commit

Permalink
fix model management
Browse files Browse the repository at this point in the history
  • Loading branch information
isha382 committed Oct 8, 2024
1 parent 69c0fdb commit 5b92739
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ private void processModelFromStorage(List<Uri> files, String fileName) {
}

private void openPicker() {
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
intent.setType("application/octet-stream"); // Specify the MIME type for TFLite files
intent.addCategory(Intent.CATEGORY_OPENABLE);
mStartForResult.launch(intent);
Expand Down

0 comments on commit 5b92739

Please sign in to comment.