Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
2 captures
12 Jun 22 - 14 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
  • Help Room /
avatar image
3
Question by mypolat · Sep 02, 2015 at 08:06 AM · androidplugingoogle playlocalizationlanguages

How to access path like res/values-XX/strings.xml

Google Play wants to localized application. So this must be native for APK. I want to translate my game for all languages. File strings.xml has 70 words and i translated all of them. I created "Plugins/Android/res/values/strings.xml", "../values-en/strings.xml", "../values-fr/strings.xml", "../values-it/strings.xml" etc.

But Android devices don't find this path. I think there is no path. I'm not sure. What is the problem? And How can i fix this problem ?

Exception:

 Failed to find mounted volume for /storage/sdcard/Android/data/com.newexample.readxml/files/

My Code:

 string PathRes = "Plugins/Android/res";
 string PathLanguage = "values"; //It can be "values-en", "values-it", "values-fr" for system language. This isn't important.
 string FileName = "strings.xml";

 public string GetText (string val)
 {
     val = val.Trim ().ToLower ().Replace (" ", "_");
 
     try {
 
         string pathXml = Application.persistentDataPath + "/" + PathRes + "/" + PathLanguage + "/" + FileName;
 
         var doc = new XmlDocument ();
         doc.Load (pathXml); //Problem is here. The device don't access it.
         
         XmlNode itemNode = doc.SelectSingleNode ("/resources/string[@name = '" + val + "']");
         
         if (itemNode != null) {
             
             return itemNode.InnerText;
         } else {
             
             return "";
         }
 
     } catch (System.Exception ex) {
 
         P ("Error!!! System using default language path.");
         return "";
     }
 }

Note from Me : Sorry, I don't know English very well.

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
1

Answer by WillNode · Sep 02, 2015 at 09:45 AM

you can't access xml file directly, use TextAsset for that.

 public TextAsset xmlFile; //Attach XML File here, or load it by Resources.Load
 XMLDocument doc;
 
 void Start(){
 doc=new XMLDocument();
 doc.LoadXml(xmlFile.text);
 }
Comment
Add comment · Show 4 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image mypolat · Sep 02, 2015 at 10:32 AM 0
Share

Thanks for answer. So, Can i access "Plugins/Android/res/values/strings.xml" with TextAsset directly? (Not Resources)

avatar image WillNode · Sep 02, 2015 at 10:35 AM 0
Share

yes, and you don't need to place them inside Plugins folder again.

avatar image mypolat · Sep 02, 2015 at 10:40 AM 1
Share

But Google Play wants native localization, so files can be there. Am I wrong ?

avatar image WillNode · Sep 02, 2015 at 10:45 AM 0
Share

hmm. unfortunately i had no experience for google's native localization so far.....

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

29 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

When using the google playservices plugin for android getting build errors in the GPGSAndroidSetupUI class 1 Answer

What is "good" Install/Uninstall rate for growing-good apps? 0 Answers

Adobe Aviary Integration. Your hardware does not support this application 0 Answers

Unity - How to add native view to Unity main activity? 0 Answers

Android Manifest xml missing - Build failed. Need Help! 4 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges