You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-14 13:41:12 +00:00
Fix manifest generation bug in Android export
This commit is contained in:
@@ -913,15 +913,13 @@ void EditorExportPlatformAndroid::_fix_manifest(Vector<uint8_t>& p_manifest,bool
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
ret.resize(ret.size()+stable_extra.size());
|
for(int i=0;i<stable_extra.size();i++) {
|
||||||
|
ret.push_back(stable_extra[i]);
|
||||||
|
}
|
||||||
|
|
||||||
while(ret.size()%4)
|
while(ret.size()%4)
|
||||||
ret.push_back(0);
|
ret.push_back(0);
|
||||||
|
|
||||||
for(int i=0;i<stable_extra.size();i++) {
|
|
||||||
|
|
||||||
chars[i]=stable_extra[i];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
uint32_t new_stable_end=ret.size();
|
uint32_t new_stable_end=ret.size();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user