Top Quality Products

WhatsApp Media Cleaner- Android Source Code

$19.00

Added to wishlistRemoved from wishlist 0
Add to compare

1 sales

LIVE PREVIEW

WhatsApp Media Cleaner- Android Source Code

Review: WhatsApp Media Cleaner – Android Source Code

Introduction

Are you tired of running out of storage space on your Android device due to the numerous WhatsApp media files taking up space? Look no further! WhatsApp Media Cleaner is a powerful tool that helps you find and delete these files, giving you more space to store your favorite files. In this review, we’ll take a closer look at the features, requirements, and instructions for using this app.

Overview

WhatsApp Media Cleaner is a simple yet effective tool that allows you to find and delete all WhatsApp media files, including videos, images, audio files, voice notes, and documents. With this app, you can easily clear out unwanted files and free up space on your device.

Features

The app offers a range of features that make it easy to manage your WhatsApp media files. Some of the key features include:

  • Show all send and received files of video, audio, images, and database
  • All WhatsApp media files in one place for easy removal and backup
  • User-friendly and best user interface design
  • Easy to save space on your device
  • Easy to clear WhatsApp selected media files (video, image, audio, voice notes, documents…)
  • Easy to check WhatsApp media memory size

Requirements

WhatsApp Media Cleaner requires Android 5.0 and above to run.

Instructions

The app is built on Android Studio IDE 3.3.2, making it easy to customize and reskin. The instructions for using the app are straightforward:

  1. The app is built on Android Studio IDE 3.3.2.
  2. Easy to reskin, all attributes are defined in the XML file, making it easy to change the design without modifying the source code.
  3. AdMob (Banner + Interstitial) integration is included, but you’ll need to replace the AdMob IDs.
  4. You can replace the icon, change the title, change the package name, and generate a signed APK.

APK DEMO LINK

Unfortunately, the APK demo link is not provided, but you can easily generate a new APK by following the instructions above.

Score: 0/5

Unfortunately, the lack of a demo APK and the absence of any reviews or ratings make it difficult to evaluate the app’s performance and reliability. However, based on the features and requirements, WhatsApp Media Cleaner seems like a promising tool for cleaning up WhatsApp media files. If you’re interested in trying out the app, you may want to wait until a demo APK is available or until more reviews and ratings are posted.

Conclusion

WhatsApp Media Cleaner is a powerful tool that can help you free up space on your Android device by deleting unwanted WhatsApp media files. While the app seems promising, the lack of a demo APK and reviews make it difficult to recommend. If you’re interested in trying out the app, be sure to wait until more information is available.

User Reviews

0.0 out of 5
0
0
0
0
0
Write a review

There are no reviews yet.

Be the first to review “WhatsApp Media Cleaner- Android Source Code”

Your email address will not be published. Required fields are marked *

Introduction

WhatsApp is an increasingly popular messaging app that allows users to exchange messages, make voice and video calls, and share media files with their contacts. One of the most significant advantages of WhatsApp is that it allows users to share large files, which can be useful for sharing documents, pictures, and videos with others. However, WhatsApp's media storage can quickly add up, especially if you have thousands of messages and files stored in your chat history.

To help resolve this issue, we have developed a powerful tool called WhatsApp Media Cleaner, designed specifically for Android devices. This application is designed to help you manage and free up storage space on your device by deleting unwanted media files from your WhatsApp data.

In this tutorial, we will provide step-by-step instructions on how to use the WhatsApp Media Cleaner Android source code to clean up and manage your WhatsApp media files.

Overview of WhatsApp Media Cleaner

Before we dive into the tutorial, let's provide an overview of the WhatsApp Media Cleaner Android application:

  • Functionality: WhatsApp Media Cleaner is designed to find and delete unwanted media files from your WhatsApp database, freeing up storage space on your device.
  • Features:
    • Deletes selected media files from your WhatsApp database.
    • Saves deleted media files to a backup location (optional).
    • Recursively searches for media files across all WhatsApp chats.
    • Automatically detects and deletes duplicate media files.

Step-by-Step Tutorial: Using the WhatsApp Media Cleaner Android Source Code

Pre-requisites:

  • Android development environment (Android Studio or similar IDE).
  • WhatsApp Media Cleaner source code (available on GitHub or downloaded from the official website).
  • Android device or emulator.

Step 1: Open the WhatsApp Media Cleaner Source Code

  1. Open your Android development environment and create a new project.
  2. In the project directory, create a new folder (e.g., "WhatsAppMediaCleaner") and extract the WhatsApp Media Cleaner source code into this folder.
  3. Import the project into your IDE by choosing the "WhatsAppMediaCleaner" folder as the project root.

Step 2: Set Up the Project

  1. In the project settings, set the language to Java (or Kotlin if you prefer).
  2. Update the gradle build file (build.gradle) with the necessary dependencies (e.g., WhatsApp-api, AndroidX libraries).

Step 3: Run the WhatsApp Media Cleaner

  1. Build and run the WhatsApp Media Cleaner application on your Android device or emulator.
  2. The application will prompt you to grant permissions to access your WhatsApp database. Grant the necessary permissions.
  3. The application will display a list of your WhatsApp chats. Select the chat or chats you want to clean.

Step 4: Select Media Files to Clean

  1. The application will list all media files associated with the selected chat or chats.
  2. Select the media files you want to delete by checking the checkboxes beside each file.
  3. You can select multiple files at once by checking multiple boxes.

Step 5: Start the Cleaning Process

  1. Click the "Clean" button to start the cleaning process.
  2. The application will delete the selected media files from your WhatsApp database.
  3. Optionally, you can choose to save the deleted files to a backup location (e.g., External Storage).

Step 6: Verify the Cleaning Process

  1. Once the cleaning process is complete, verify that the selected files have been deleted from your WhatsApp database.
  2. Verify that the backup location (if chosen) has been populated with the deleted files.

Congratulations! You have successfully used the WhatsApp Media Cleaner Android source code to clean up and manage your WhatsApp media files.

Conclusion:

In this tutorial, we covered the step-by-step process of using the WhatsApp Media Cleaner Android source code to clean and manage your WhatsApp media files. By following these simple steps, you can free up storage space on your Android device and keep your WhatsApp data organized.

Remember to always backup your important media files before cleaning, and be mindful of the potential consequences of deleting sensitive data.

Database Settings

Database settings specify the path and settings for your database. In this case, we recommend using SQLite as it is used in the WhatsApp Media Cleaner itself. To configure your database settings create a new class:

public class DatabaseConfig {
    public String TAG = "DatabaseConfig";
    public String filePath = Environment.getExternalStorageDirectory() + "//WhatsAppMediaCleaner.database";
    public int maxOpenQueries = 250;
    public int detectTables = 3; // value to detect sqlite tables
}

Logs Settings

Specify log settings to monitor the app in different scenarios:

public class LogConfig {
    public LogConfig() {
    }

    public boolean showLogsDebug = true;
    public boolean showLogsError = true;
    public boolean storeLogs = true;

    String TAG = "WhatsAppMediaCleaner-log";
    String directoryPath =
        Environment.getExternalStorageDirectory() +
        "/WhatsAppMediaCleaner/log";
}

Background Service Settings

Configure permissions for background service execution:

public class BackgroundServiceConfig {
    private BackgroundServiceConfig() {

    }

    public String TAG =
        "WhatsAppMediaCleaner-com.example.whatsappmediareader";
    public int startType = Service.START_REDELIVERY_INTENT;

    Context context;
}

App Settings

Configure setting for app's usage:

public class AppSettings {

    public boolean saveLogsData = true;
    public boolean showOnlyAvailableMediaFiles = true;

    public String defaultDirectoryPath; // path of default directory used
    public int defaultMode; // type of mode selection

    public int MODE_ALL_VIDEO = 0;
    public int MODE_ALL_AUDIO = 1;
}

Error Handling Configurations

Configure your error handlings for smoother execution during WhatsApp Media Cleaner:

public class ErrorHandlingConfig {
    public ErrorCode[] errorCodes;

    public class ErrorCode {
        public int errorNo;
        public int retryCount;
    }

    public Context context;
}

Here are the features of WhatsApp Media Cleaner - Android Source Code mentioned in the content:

  1. This app shows all send and received files of video, audio, images and database.
  2. All WhatsApp media files are found in one place.
  3. User-friendly and best user interface Design.
  4. Easy to save space on your device by deleting unnecessary files.
  5. Easy to clear WhatsApp selected media files (video, image, audio, voice notes, documents, etc.).
  6. Easy to check WhatsApp media memory size.

Note that these features are listed under the "Features:" section of the text.

WhatsApp Media Cleaner- Android Source Code
WhatsApp Media Cleaner- Android Source Code

$19.00

Shop.Vyeron.com
Logo
Compare items
  • Total (0)
Compare
0