Metadata-Version: 2.1
Name: android-text-tool
Version: 0.1.0
Summary: This is a tool for extracting string resources from an Android project.
License: MIT
Author: Ihor Rusin
Author-email: phoenix.ria@gmail.com
Requires-Python: >=3.11,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: PyYAML (>=6.0.1,<7.0.0)
Description-Content-Type: text/markdown

# Android Text Tool

## Description

This is a useful script for exctracting all strings from a multimodule Android project.

NOTE: Before cleaning, please run:

```bash
    ./gradlew clean
```

in the root of your project.

## Installation

This script can be installed via PIP repositiory by running the following command:

```bash
    pip install android-text-tool
```

## Usage

Basic usage. Run the tool in the root of your project(please, don't forget to clean it before to prevent extracting strings from different libraries you use).

```bash
    android-text-tool .
```

