Files
apk/README.md
2025-12-09 12:10:25 +01:00

44 lines
1.4 KiB
Markdown

# Fast apk creation tool for Android
This repository contains a simple and efficient tool for creating Android APK files quickly. It is designed to streamline the process of packaging Android applications, making it easier for developers to generate APKs for testing and deployment.
## Features
The build process is based on the tool [gradle](https://gradle.org/)
# Installation
1. Clone this repository to your local machine using:
```bash
git clone https://git.nxs.solutions/Fast/apk.git FastAPK
```
2. Get the gradle build tool from [here](https://gradle.org/install/).
3. Navigate to the project directory, copy one of the sample app folders to create your own app:
```bash
cd FastAPK
cp -r FastDocumentation MyFastApp
cd MyFastApp
unzip ~/Downloads/gradle-<version>-all.zip -d ./gradle
```
4. Modify the `build.gradle` file to set your application ID, version, and other configurations as needed.o
5. Modify the `src/main/AndroidManifest.xml` file to set your app's permissions and other manifest settings.
6. Add your application code and resources in the `src/main/java` and `src/main/res` directories respectively.
7. Modify the `src/main/res/values/strings.xml` file to set your app's name and other string resources.
## Building the APK
To build the APK, run the following command in the project directory:
```bash
./gradle/gradle-<version>/bin/gradle clean assembleDebug
```