Skip to content
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.

Commit

Permalink
listing assets file on the wrong dir (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
marandaneto authored and bruno-garcia committed Nov 18, 2019
1 parent 22d8b4e commit 4672bac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,7 @@ private String[] getProGuardUuids() {
InputStream is = null;
try {
AssetManager assets = context.getAssets();
String[] files = assets.list("/");
String[] files = assets.list("");

List<String> listFiles = Arrays.asList(files != null ? files : new String[0]);
if (listFiles.contains("sentry-debug-meta.properties")) {
Expand Down

0 comments on commit 4672bac

Please sign in to comment.