-
Notifications
You must be signed in to change notification settings - Fork 0
/
ErrorSolutions.json
80 lines (80 loc) · 4.51 KB
/
ErrorSolutions.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"wsl": {
"errors": [
{
"message": "[error 2147942402 (0x80070002) when launching `ubuntu.exe']",
"solutions": [
"Solved by adding %USERPROFILE%\\AppData\\Local\\Microsoft\\WindowsApps to PATH",
"Change command line for ubuntu in Terminal Preview app setting to \"C:\\Windows\\system32\\wsl.exe -d Ubuntu\""
],
"link": "https://stackoverflow.com/a/73324487"
}
]
},
"git": {
"errors": [
{
"message": "error: src refspec master does not match any",
"moreInfo": "error: failed to push some refs to 'https://github.com/noobogami/ErrorSolutions'",
"solutions": ["just perform git add and add some file and commit them and try again"]
}
]
},
"android": {
"errors": [
{
"message": "DllNotFoundException: Unable to load DLL 'FirebaseCppApp-10_3_0'",
"moreInfo": "error Unity DllNotFoundException: Unable to load DLL 'FirebaseCppApp-10_3_0'. Tried the load the following dynamic libraries: Unable to load dynamic library 'FirebaseCppApp-10_3_0' because of 'Failed to open the requested dynamic library (0x06000000) dlerror() = dlopen failed: library \"FirebaseCppApp-10_3_0\" not found",
"solutions": ["resolve android dependencies"]
}
]
},
"unity": {
"errors": [
{
"message": "The type 'Task' exists in both 'Unity.Tasks, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' and 'netstandard, Version=2.1.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'",
"moreInfo": "Task exist in both 'Unity.Task' and 'netstandard', or any conflict between internal unity dlls and dotnet dlls",
"solutions": ["Remove folder named 'Parse' that created by some google shitty plugin"],
"link": "https://github.com/googlesamples/google-signin-unity/issues/113#issuecomment-536920994"
},
{
"message": "Building Library\\Bee\\artifacts\\Android\\iz17e\\libil2cpp.so failed",
"moreInfo": "C:/Program Files/Unity/Hub/Editor/2021.3.12f1/Editor/Data/PlaybackEngines/AndroidPlayer/NDK/toolchains/llvm/prebuilt/windows-x86_64/bin/../lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/bin\\ld.gold.exe: error: Library/Bee/artifacts/Android/iz17e/rgm7_ly-CSharp8.o: multiple definition of 'PersistentStorage_CanAccessFiles_mFD53D45F2A0B64DA1CF6F1796203A5154F109AC2'",
"solutions": ["couldn't find solution, C++ compiler configuration was on release and changing it to master just changed the error after 23 min of build time, change it back to release somehow solved problem"],
"link": "https://issuetracker.unity3d.com/issues/il2cpp-android-build-failure-when-building-project-with-toolbuddy-asset-and-il2cpp-scripting-backend-selected"
}
],
"problems": [
{
"section": "Package Manager",
"info": "package that added from disk won't compile and identify as IL code and cannot be used in other scripts",
"solutions": ["add assembly deffinition file to root of package folder"]
}
]
},
"C#": {
"errors": [
{
"message": "System.InvalidOperationException: Collection was modified; enumeration operation may not execute.",
"solutions": ["you are modifying a collection in foreach (removing an item in foreach on list of items). use \".ToList()\" on foreach definition part : \n`foreach (var item in items.ToList())`"]
}
]
},
"gitlab-runner": {
"errors": [
{
"message": "Error: Cannot perform an interactive login from a non TTY device",
"solutions": ["Add 'gitlab-deploy-token' to as a repository 'Deploy Token'"]
},
{
"message": "unknown blob",
"solutions": ["Add 'registry['env'] = { \"REGISTRY_HTTP_RELATIVEURLS\" => true }' to envronmnet section of your gitlab docker compose"]
},
{
"message": "remote: HTTP Basic: Access denied",
"solutions": ["add `clone_url = \"url\" to runner config`"],
"link": "https://stackoverflow.com/questions/72381700/gitlab-pipeline-failing-remote-http-basic-access-denied"
}
]
}
}