setup.xml 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <!-- App name and other strings-->
  4. <string name="app_name">Nextcloud</string>
  5. <string name="account_type">nextcloud</string> <!-- better if was a domain name; but changing it now would require
  6. migrate accounts when the app is updated -->
  7. <string name="authority">org.nextcloud</string> <!-- better if was the app package with ".provider" appended ; it identifies the provider -->
  8. <string name="document_provider_authority">org.nextcloud.documents</string>
  9. <string name ="db_file">nextcloud.db</string>
  10. <string name ="db_name">nextcloud</string>
  11. <string name ="data_folder">nextcloud</string>
  12. <string name ="log_name">nextcloud</string>
  13. <string name ="default_display_name_for_root_folder">Nextcloud</string>
  14. <string name ="user_agent">Mozilla/5.0 (Android) nextcloud-android/%1$s</string>
  15. <!-- URLs and flags related -->
  16. <string name="server_url"></string>
  17. <bool name="show_server_url_input">true</bool>
  18. <bool name="show_welcome_link">true</bool>
  19. <string name="welcome_link_url">"https://nextcloud.com"</string>
  20. <string name="share_api_link"></string>
  21. <!-- Flags to setup the authentication methods available in the app -->
  22. <string name="auth_method_oauth2">off</string>
  23. <string name="auth_method_saml_web_sso">off</string>
  24. <!-- Flags to enable/disable some features -->
  25. <string name = "send_files_to_other_apps">on</string>
  26. <bool name = "share_via_link_feature">true</bool>
  27. <bool name = "share_with_users_feature">true</bool>
  28. <!-- Colors -->
  29. <color name="login_text_color">#000000</color>
  30. <color name="login_text_hint_color">#757575</color>
  31. <color name="login_background_color">#FFFFFF</color>
  32. <color name="login_logo_background_color">#FFFFFF</color>
  33. <color name="background_color">#FFFFFF</color>
  34. <color name="actionbar_start_color">#0082c9</color>
  35. <color name="actionbar_end_color">#0082c9</color>
  36. <color name="primary_button_background_color">@color/owncloud_blue_accent</color>
  37. <color name="primary_button_text_color">@color/white</color>
  38. <color name="secondary_button_background_color">#D6D7D7</color>
  39. <color name="secondary_button_text_color">@color/black</color>
  40. <color name="drawer_header_color">@color/owncloud_blue_accent</color>
  41. <!-- Button -->
  42. <color name="button_text_color">#000000</color>
  43. <!-- Multiaccount support -->
  44. <bool name="multiaccount_support">true</bool>
  45. <!-- Help, imprint and feedback -->
  46. <bool name="help_enabled">true</bool>
  47. <bool name="imprint_enabled">false</bool>
  48. <bool name="recommend_enabled">true</bool>
  49. <bool name="feedback_enabled">true</bool>
  50. <bool name="logger_enabled">false</bool>
  51. <string name="url_help">http://nextcloud.com/mobile/help</string>
  52. <string name="url_imprint"></string>
  53. <string name="mail_recommend">"mailto:"</string>
  54. <string name="mail_feedback">"mailto:apps@nextcloud.com"</string>
  55. <string name="url_app_download">"https://play.google.com/store/apps/details?id=com.nextcloud.android"</string>
  56. <!--Destination mail for sending log files -->
  57. <string name="mail_logger"></string>
  58. </resources>