* android: Create app files dir if needed.

git-svn-id: trunk@34356 -
This commit is contained in:
yury 2016-08-20 12:41:36 +00:00
parent 0adfe669aa
commit 7756dab2bf

View File

@ -1453,7 +1453,10 @@ begin
Result:='/data/data/' + Result;
IsJniLibrary:=DirectoryExists(Result);
if IsJniLibrary then
Result:=Result + '/files/'
begin
Result:=Result + '/files/';
ForceDirectories(Result);
end
else
Result:=''; // No package
end;