Skip to content

MEGAMINDMK/vc-android-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vc-android-sdk

Getting the Mod Working

To get the mod working properly, you will need to install the GTA VC Android APK:

Download gtavc.apk

Make 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

Vice City Mod – Starter Template

Requirements:

The jni folder must be placed inside your NDK project directory.

How to Compile Your Mod:

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.

Where to Place the .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