1.4 KiB
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
Installation
- Clone this repository to your local machine using:
git clone https://git.nxs.solutions/Fast/apk.git FastAPK
-
Get the gradle build tool from here.
-
Navigate to the project directory, copy one of the sample app folders to create your own app:
cd FastAPK
cp -r FastDocumentation MyFastApp
cd MyFastApp
unzip ~/Downloads/gradle-<version>-all.zip -d ./gradle
-
Modify the
build.gradlefile to set your application ID, version, and other configurations as needed.o -
Modify the
src/main/AndroidManifest.xmlfile to set your app's permissions and other manifest settings. -
Add your application code and resources in the
src/main/javaandsrc/main/resdirectories respectively. -
Modify the
src/main/res/values/strings.xmlfile 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:
./gradle/gradle-<version>/bin/gradle clean assembleDebug