Advertisement
techmik

lanbrowse samba explorer errors

Nov 1st, 2013
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.37 KB | None | 0 0
  1. packages/apps/CMFileManager/src/com/cyanogenmod/filemanager/DownloadQueue.java:70: cannot find symbol
  2. symbol : variable main
  3. location: class com.cyanogenmod.filemanager.R.layout
  4. setContentView(R.layout.main);
  5. ^
  6. packages/apps/CMFileManager/src/com/cyanogenmod/filemanager/DownloadService.java:288: cannot find symbol
  7. symbol : variable notify
  8. location: class com.cyanogenmod.filemanager.R.layout
  9. RemoteViews nmView = new RemoteViews(mOwner.getPackageName(), R.layout.notify);
  10. ^
  11. packages/apps/CMFileManager/src/com/cyanogenmod/filemanager/DownloadService.java:289: cannot find symbol
  12. symbol : variable TextView01
  13. location: class com.cyanogenmod.filemanager.R.id
  14. nmView.setTextViewText(R.id.TextView01, text);
  15. ^
  16. packages/apps/CMFileManager/src/com/cyanogenmod/filemanager/DownloadService.java:297: cannot find symbol
  17. symbol : variable notify
  18. location: class com.cyanogenmod.filemanager.R.layout
  19. nm.notify(R.layout.notify, notif);
  20. ^
  21. packages/apps/CMFileManager/src/com/cyanogenmod/filemanager/PickHost.java:17: cannot find symbol
  22. symbol : variable pickhost
  23. location: class com.cyanogenmod.filemanager.R.layout
  24. setContentView(R.layout.pickhost);
  25. ^
  26. packages/apps/CMFileManager/src/com/cyanogenmod/filemanager/PickHost.java:19: cannot find symbol
  27. symbol : variable Button01
  28. location: class com.cyanogenmod.filemanager.R.id
  29. Button btn = (Button)findViewById(R.id.Button01);
  30. ^
  31. packages/apps/CMFileManager/src/com/cyanogenmod/filemanager/PickHost.java:27: cannot find symbol
  32. symbol : variable EditText01
  33. location: class com.cyanogenmod.filemanager.R.id
  34. EditText ip = (EditText)findViewById(R.id.EditText01);
  35. ^
  36. packages/apps/CMFileManager/src/com/cyanogenmod/filemanager/SambaExplorer.java:137: cannot find symbol
  37. symbol : variable main
  38. location: class com.cyanogenmod.filemanager.R.layout
  39. setContentView(R.layout.main);
  40. ^
  41. packages/apps/CMFileManager/src/com/cyanogenmod/filemanager/SambaLogin.java:23: cannot find symbol
  42. symbol : variable login
  43. location: class com.cyanogenmod.filemanager.R.layout
  44. setContentView(R.layout.login);
  45. ^
  46. packages/apps/CMFileManager/src/com/cyanogenmod/filemanager/SambaLogin.java:25: cannot find symbol
  47. symbol : variable Button01
  48. location: class com.cyanogenmod.filemanager.R.id
  49. Button btn = (Button)findViewById(R.id.Button01);
  50. ^
  51. packages/apps/CMFileManager/src/com/cyanogenmod/filemanager/SambaLogin.java:30: cannot find symbol
  52. symbol : variable EditTextDomain
  53. location: class com.cyanogenmod.filemanager.R.id
  54. EditText domain = (EditText)findViewById(R.id.EditTextDomain);
  55. ^
  56. packages/apps/CMFileManager/src/com/cyanogenmod/filemanager/SambaLogin.java:31: cannot find symbol
  57. symbol : variable EditTextUsername
  58. location: class com.cyanogenmod.filemanager.R.id
  59. EditText username = (EditText)findViewById(R.id.EditTextUsername);
  60. ^
  61. packages/apps/CMFileManager/src/com/cyanogenmod/filemanager/SambaLogin.java:32: cannot find symbol
  62. symbol : variable EditTextPassword
  63. location: class com.cyanogenmod.filemanager.R.id
  64. EditText password = (EditText)findViewById(R.id.EditTextPassword);
  65. ^
  66. packages/apps/CMFileManager/src/com/cyanogenmod/filemanager/SambaLogin.java:36: cannot find symbol
  67. symbol : constructor Intent(<anonymous android.view.View.OnClickListener>,java.lang.Class<com.cyanogenmod.filemanager.SambaExplorer>)
  68. location: class android.content.Intent
  69. Intent intent = new Intent(this, com.cyanogenmod.filemanager.SambaExplorer.class);
  70. ^
  71. Note: Some input files use or override a deprecated API.
  72. Note: Recompile with -Xlint:deprecation for details.
  73. 14 errors
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement