Jump to content

Apk revision reqst pro armv7 x86 , cant install i have tried on 15 devices and hell no one succeede


Bellctanel68

Recommended Posts

Request for revision compatibility issues specially in android 5.0 os 64bits , i know youre not a paid devs but please tell us whats the true position of this game we always hope for your kind answers, pretty please fix mr admin/senior dev.

 

(VAR InFile: TEXT; (* Input file read from. *)

VAR Day: DayType); (* Returned day of the week value. *)

VAR

Ch: char; (* Input character. *)

DayStr: DayStrType; (* Input string of chars. *)

BEGIN

(* Skip blanks. *)

Ch := ' ';

WHILE (Ch = ' ') AND NOT eoln(InFile) DO

BEGIN

read(InFile, Ch)

END;

 

(* See if we found a non-blank character. *)

IF Ch = ' ' THEN

(* The skip loop must have ended at eoln. *)

Day := BadDay

ELSE

BEGIN

(* Read the characters. *)

DayStr := '';

WHILE (Ch <> ' ') AND (Length(DayStr) < DaySize) DO

BEGIN

DayStr := DayStr + Ch;

ReadOnLine(InFile, Ch)

END;

 

(* Match must be exact. *)

IF Ch <> ' ' THEN

(* Something else out there. Not good. *)

Day := BadDay

ELSE

BEGIN

(* Discard any remaining characters. *)

WHILE (Ch <> ' ') AND NOT eoln(InFile) DO

read(InFile, Ch);

 

(* Map the string to the enum. *)

Day := MapToDay(DayStr)

END

END

END;

 

{ Write a day to the file. }

PROCEDURE WriteDay

(VAR OutFile: TEXT; (* Input file written to. *)

Day: DayType); (* Day to write. *)

BEGIN

write(OutFile, DayMap[Day])

END;

 

BEGIN

(* Initialize the DayMap. This is an easy way to convert

DayType values to strings. It is used internally by the

unit. *)

DayMap[sun] := 'Sun';

DayMap[Mon] := 'Mon';

DayMap[Tue] := 'Tue';

DayMap[Wed] := 'Wed';

DayMap[Thu] := 'Thu';

DayMap[Fri] := 'Fri';

DayMap[sat] := 'Sat';

DayMap[badDay] := '*

 

 

:(

Link to comment
Share on other sites

Re: Apk revision reqst pro armv7 x86 , cant install i have tried on 15 devices and hell no one succeeded to be installe

 

<r><QUOTE author="ilmachine"><s>

</s><POST content="53178"><s></s>53178<e></e></POST> Successfully installed in Samsung S5 and S6<e>
</e></QUOTE>

did you just downloaded the apk and installed? or did something else?</r>

Big thanks to Auras for that sig!

 

20hrbfa.png

Link to comment
Share on other sites

Re: Apk revision reqst pro armv7 x86 , cant install i have tried on 15 devices and hell no one succeeded to be installe

 

<r><QUOTE author="shay3100"><s>

</s><POST content="53179"><s></s>53179<e></e></POST> <QUOTE author="ilmachine"><s>
</s><POST content="53178"><s></s>53178<e></e></POST> Successfully installed in Samsung S5 and S6<e>
</e></QUOTE>

did you just downloaded the apk and installed? or did something else?<e>

</e></QUOTE>

 

<br/>

just downloaded and installed. My phone is in developer mode and enables the option to install third-party applications</r>

qyJSoTS.png

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...