• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[OTC] Who ever managed to compile the android client on windows?

chupaescadatri

Banned User
Joined
Jul 5, 2014
Messages
338
Reaction score
49
I've tried it anyway, I've been trying for more than 1 year, and without success, does anyone have an idea or can it be a light?
 
Say something more about it. I dont know what you mean and I guess others dont as well.
I tried compiling otclient android following the edubart tutorial
I've tried several times and any data worked out,
We saw errors, toolchain errors, CMAKE_COMPILER error
it does not find a toolchain after it does not find build.xml
I think he did it wrong, but all his mistakes, and when they managed to compile it is an apk, you would like to know if you know how to compile it for android, I would even pay for the work
 
There you go...
Uploadfiles.io - OTClient.apk
File is too large to upload here (~52 megabytes)
I know that on the internet I have the best in apk, but I need to compile because I have to modify a file in map.cpp
there's no point in using one that is already ready, I have to have an apt otclient with this modification:

change this:
Code:
void Map::resetAwareRange()
{
   AwareRange range;
   range.left = 8;
   range.top = 6;
   range.bottom = 7;
   range.right = 9;
   setAwareRange(range);
}

for this:

Code:
{
   AwareRange range;
   range.left = 19;
   range.top = 8;
   range.bottom = range.top+1;
   range.right = range.left+1;
   setAwareRange(range);
}
 
Back
Top