AppSales-Mobile
AppSales-Mobile copied to clipboard
Chinese App name not support when importing...(with solution)
AppSales Mobile is a GREAT app! Unfortunately all Chinese App name will become ALIEN name when importing CSV. I fixed that problem in [ImportExportViewController unzipAndImportFile] by replace the following code:
NSString *fileContents = [[[NSString alloc] initWithContentsOfFile:reportPath] autorelease];
with code:
NSString *fileContents = [NSString stringWithContentsOfFile:reportPath encoding:NSUTF8StringEncoding error:nil];
Could you please check if this is still the case with the latest version?