Skip to content Skip to sidebar Skip to footer

Getting Shared Preferences While Migrating Project From Cocos2dX To Unity Android

I had to port my game from Cocos2dX to Unity for various reasons. I have now ported the project successfully but to launch it I have to make a mechanism to get old user data and st

Solution 1:

I dont know why I am unable to get the file through Unity Engine, I had to write custom plugin is Java and use that in Unity Project and that some how has worked.

Following is the code which return string after reading the file on both rooted and non rooted devices

    public static String getCocos2DPrefsFile(String mPackageName)
{
    //Get the text file
            File file = new File("/data/data/"+mPackageName+"/shared_prefs/","Cocos2dxPrefsFile.xml");

            //Read text from file
            StringBuilder text = new StringBuilder();

            try {
                BufferedReader br = new BufferedReader(new FileReader(file));
                String line;

                while ((line = br.readLine()) != null) {
                    text.append(line);
                    text.append('\n');
                }
                br.close();
            }
            catch (IOException e) {
                //You'll need to add proper error handling here
                Log.d("Error", e.toString());
            }
            return text.toString();
}

Post a Comment for "Getting Shared Preferences While Migrating Project From Cocos2dX To Unity Android"