-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathconfig.json
93 lines (84 loc) · 2.29 KB
/
config.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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"package_dirs":
[
"packages"
],
"package_suffixes":
[
".apk",
".ipa",
".zip"
],
"check_file_content_keywords":
[
"[^/]+\\.so$",
"[^/]+\\.app/.*"
],
"no_need_to_check_file_content":
[
"[^/]+\\.png$",
"[^/]+\\.jpg$",
"[^/]+\\.jpeg$",
"[^/]+\\.plist$",
"[^/]+\\.caf",
"[^/]+\\.pvr",
"[^/]+\\.swf",
"[^/]+\\.json",
"[^/]+\\.txt",
"[^/]+\\.mp3",
"[^/]+\\.ogg",
"[^/]+\\.wav",
"PkgInfo$",
"iTunesArtwork$"
],
"engines":
[
{
"name": "cocos2d",
"file_name_keywords": ["cocos2d"],
"file_content_keywords": ["CCFileUtils", "cocos2dVersion", "cocos2d"],
"sub_types":
{
"lua": ["CCLuaEngine", "LuaEngine"],
"js": ["ScriptingCore"],
"CocosCreator": ["Scale9SpriteV2"]
},
"engine_version_keyword": "\\0cocos2d-x[\\s-](\\d+\\..*?)\\0"
},
{
"name": "unity",
"file_name_keywords": ["libunity\\.so", "unity3d", "unityengine", "unityscript"],
"file_content_keywords": ["mono_unity", "unity3d", "unityengine", "unityscript"],
"sub_types": {}
},
{
"name": "flash",
"file_name_keywords": ["flash.*\\.so"],
"file_content_keywords": [],
"sub_types":
{
"Stage3D": ["AIRStage3D"],
"ActionScript": ["ActionScript"],
"FlashAir": ["flash air", "flash_air", "flashair"]
}
},
{
"name": "Unreal",
"file_name_keywords": ["libUE4.so", "UE4Game"],
"file_content_keywords": ["UProjectileMovementComponent", "UPrimitiveComponent", "UE4Game"],
"sub_types": {}
},
{
"name": "libgdx",
"file_name_keywords": ["libgdx.so"],
"file_content_keywords": ["com_badlogic_gdx"],
"sub_types": {}
},
{
"name": "egret",
"file_name_keywords": [],
"file_content_keywords": ["egretframeworknative", "EGTTexture"],
"sub_types": {}
}
]
}