質問編集履歴
2
変更
title
CHANGED
@@ -1,1 +1,1 @@
|
|
1
|
-
|
1
|
+
gile.xmlについて
|
body
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
|
2
|
+
gile.xml
|
3
3
|
```xml
|
4
4
|
<?xml version="1.0" encoding="utf-8"?>
|
5
5
|
<resources>
|
1
修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,51 +1,8 @@
|
|
1
|
-
|
1
|
+
|
2
|
-
フォルダは以下のように構成されています
|
3
|
-
assets
|
4
|
-
lib-
|
5
|
-
-armeabi
|
6
|
-
-libcocos2dcpp.so
|
7
|
-
original
|
8
|
-
res
|
9
|
-
-values
|
10
|
-
-public.xml
|
11
|
-
|
2
|
+
strings.xml
|
12
|
-
smali
|
13
|
-
unknown
|
14
|
-
AndroidManifest.xml
|
15
|
-
|
16
|
-
多くのJavaコードはlibcocos2dcpp.soを呼び出すためのものだと思っています
|
17
|
-
|
18
|
-
私は以下のpublic.xmlの中にあるコードが
|
19
|
-
```
|
20
|
-
<public type="string" name="help_message" id="0x7f0a001d" />
|
21
|
-
```
|
22
|
-
なんのためのものでどこで使われているのかを教えていただきたいです
|
23
|
-
|
24
|
-
help_message は strings.xml の中で下記のように定義されています
|
25
|
-
```
|
26
|
-
<string name="help_message">"If you need more help → Email:"</string>
|
27
|
-
```
|
28
|
-
|
29
|
-
|
30
|
-
私はlibcocos2dcpp.so を展開ツールで開きこのidの値を検索してみましたがヒットしませんでした(初めて使用したので検索方法があっているかはわかりません)
|
31
|
-
|
32
|
-
libcocos2dcpp.so
|
33
|
-
ARM binary code
|
34
|
-
|
35
|
-
public.xml
|
36
|
-
```xml
|
3
|
+
```xml
|
37
|
-
<?xml version="1.0" encoding="utf-8"?>
|
4
|
+
<?xml version="1.0" encoding="utf-8"?>
|
38
|
-
<resources>
|
5
|
+
<resources>
|
39
|
-
<!--some
|
6
|
+
<!--some string tags-->
|
40
|
-
<public type="string" name="help_message" id="0x7f0a001d" />
|
41
|
-
</resources>
|
7
|
+
</resources>
|
42
|
-
```
|
43
|
-
|
44
|
-
strings.xml
|
45
|
-
```xml
|
46
|
-
<?xml version="1.0" encoding="utf-8"?>
|
47
|
-
<resources>
|
48
|
-
<!--some string tags-->
|
49
|
-
<string name="help_message">"If you need more help → Email:"</string>
|
50
|
-
</resources>
|
51
8
|
```
|