To get the mod working properly, you will need to install the GTA VC Android APK:
Download gtavc.apkMake sure to enable installation from unknown sources in your Android settings before installing.
Also make sure after installing of app your app should have access to permissions/Files and media/Allow management of all files -> enabled
- Android Mod Loader (AML) – must be installed on your device.
- Android NDK – required for compiling the mod.
The jni
folder must be placed inside your NDK project directory.
Use the following commands inside your NDK project folder to build your mod:
ndk-build clean
ndk-build
This will compile your code into a shared library (.so) which you can then load using AML.
.so
File:
Once your mod is compiled, you’ll get a shared library file (e.g. libYourMod.so
).
Place this file in the following folder on your Android device:
/storage/emulated/0/data/com.rockstargames.gtavc/mods
Note: Some file managers show /storage/emulated/0/
as just Internal Storage/
.
The mods
folder may need to be created manually if it doesn’t already exist.
Use ZArchiver