diff --git a/Panther/app/build/classes/com/stringmanolo/panther/MainActivity$MyDownloadListener.class b/Panther/app/build/classes/com/stringmanolo/panther/MainActivity$MyDownloadListener.class index d62260c..8b36c81 100644 Binary files a/Panther/app/build/classes/com/stringmanolo/panther/MainActivity$MyDownloadListener.class and b/Panther/app/build/classes/com/stringmanolo/panther/MainActivity$MyDownloadListener.class differ diff --git a/Panther/app/build/dexedClasses/classes.dex b/Panther/app/build/dexedClasses/classes.dex index c60e99a..3e22f69 100644 Binary files a/Panther/app/build/dexedClasses/classes.dex and b/Panther/app/build/dexedClasses/classes.dex differ diff --git a/Panther/app/build/output/app-debug.apk b/Panther/app/build/output/app-debug.apk index 56ae6ba..71f8b9f 100644 Binary files a/Panther/app/build/output/app-debug.apk and b/Panther/app/build/output/app-debug.apk differ diff --git a/Panther/app/build/output/app-unsigned-debug.apk b/Panther/app/build/output/app-unsigned-debug.apk index 71ee6e6..585e2c8 100644 Binary files a/Panther/app/build/output/app-unsigned-debug.apk and b/Panther/app/build/output/app-unsigned-debug.apk differ diff --git a/Panther/app/build/resources.ap_ b/Panther/app/build/resources.ap_ index 1002552..a770804 100644 Binary files a/Panther/app/build/resources.ap_ and b/Panther/app/build/resources.ap_ differ diff --git a/Panther/app/src/main/java/com/stringmanolo/panther/MainActivity.java b/Panther/app/src/main/java/com/stringmanolo/panther/MainActivity.java index 99614b4..2cfaf10 100644 --- a/Panther/app/src/main/java/com/stringmanolo/panther/MainActivity.java +++ b/Panther/app/src/main/java/com/stringmanolo/panther/MainActivity.java @@ -374,7 +374,7 @@ public void onDownloadStart(String url, String userAgent, String contentDisposit DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url)); request.setMimeType(mimetype); request.addRequestHeader("User-Agent", userAgent); - request.setDescription("Descargando archivo"); + request.setDescription("Downloading File ..."); request.setTitle(fileName); File downloadsDirectory = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS), "Panther_Downloads"); @@ -386,9 +386,9 @@ public void onDownloadStart(String url, String userAgent, String contentDisposit DownloadManager downloadManager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE); if (downloadManager != null) { downloadManager.enqueue(request); - Toast.makeText(getApplicationContext(), "Descargando en Download/Panther_Downloads/", Toast.LENGTH_SHORT).show(); + Toast.makeText(getApplicationContext(), "Downloading: Download/Panther_Downloads/", Toast.LENGTH_SHORT).show(); } else { - Toast.makeText(getApplicationContext(), "DownloadManager no está disponible", Toast.LENGTH_SHORT).show(); + Toast.makeText(getApplicationContext(), "DownloadManager not available", Toast.LENGTH_SHORT).show(); } } }