質問編集履歴

4

input\.xml

2017/04/18 07:07

投稿

rei-
rei-

スコア11

test CHANGED
File without changes
test CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
 
10
10
 
11
- AndroidのIME機能を使って寿司ネタキーボードを作る(https://allabout.co.jp/gm/gc/442982/)
11
+ [AndroidのIME機能を使って寿司ネタキーボードを作る](https://allabout.co.jp/gm/gc/442982/)
12
12
 
13
13
  を参考にプログラムを書きました。
14
14
 
@@ -54,7 +54,7 @@
54
54
 
55
55
 
56
56
 
57
- ###ここに問題ありそう
57
+ ###ここに問題ありそう(layout/input.xml)
58
58
 
59
59
  ```layout/input.xml
60
60
 

3

AndroidManifest

2017/04/18 07:06

投稿

rei-
rei-

スコア11

test CHANGED
File without changes
test CHANGED
@@ -18,102 +18,146 @@
18
18
 
19
19
  実行までできるのですが、自作のキーボードを選択すると落ちてしまいます。
20
20
 
21
- 場合、ど原因を探せば良いでょうか
21
+ デバックで以下に出ま
22
22
 
23
- Androidアプリを触ったことがないので、ファイルの構成があっているのかどうかも怪しいです。
24
23
 
24
+
25
- ファイルの構成は以下の通り
25
+ ###デバッグ
26
+
27
+ 削ってます
26
28
 
27
29
  ```
28
30
 
29
- app > manifests > AndroidManifest.xml
31
+ 4-18 15:29:04.351 16029-16029/com.example.minami.samplecode E/AndroidRuntime: FATAL EXCEPTION: main
30
32
 
31
- > java > com.minami.ime > InputIME
33
+ Process: com.example.minami.samplecode, PID: 16029
32
34
 
33
- > MainActivity
35
+ android.view.InflateException: Binary XML file line #3: Binary XML file line #3: Error inflating class com.example.minami.samplecode
34
36
 
35
- > MyKeyboard
37
+ at android.view.LayoutInflater.inflate(LayoutInflater.java:539)
36
38
 
37
- > MyKeyboardView
39
+ at android.view.LayoutInflater.inflate(LayoutInflater.java:423)
38
40
 
39
- > res > drawable
41
+ at android.view.LayoutInflater.inflate(LayoutInflater.java:374)
40
42
 
41
- > layout > activity_main.xml
43
+ at com.example.minami.samplecode.InputIME.onCreateInputView(InputIME.java:45)
42
44
 
43
- > input.xml
45
+ Caused by: android.view.InflateException: Binary XML file line #3: Error inflating class com.example.minami.samplecode
44
46
 
45
- > mipmap
47
+ Caused by: java.lang.ClassNotFoundException: Didn't find class "com.example.minami.samplecode" on path: DexPathList[[zip file "/data/app/com.example.minami.samplecode-1/base.apk", zip file "/data/app/com.example.minami.samplecode-1/split_lib_dependencies_apk.apk", zip file "/data/app/com.example.minami.samplecode-1/split_lib_slice_0_apk.apk", zip file "/data/app/com.example.minami.samplecode-1/split_lib_slice_1_apk.apk", zip file "/data/app/com.example.minami.samplecode-1/split_lib_slice_2_apk.apk", zip file "/data/app/com.example.minami.samplecode-1/split_lib_slice_3_apk.apk", zip file "/data/app/com.example.minami.samplecode-1/split_lib_slice_4_apk.apk", zip file "/data/app/com.example.minami.samplecode-1/split_lib_slice_5_apk.apk", zip file "/data/app/com.example.minami.samplecode-1/split_lib_slice_6_apk.apk", zip file "/data/app/com.example.minami.samplecode-1/split_lib_slice_7_apk.apk", zip file "/data/app/com.example.minami.samplecode-1/split_lib_slice_8_apk.apk", zip file "/data/app/com.example.minami.samplecode-1/split_lib_slice_9_apk.apk"],nativeLibraryDirectories=[/data/app/com.example.minami.samplecode-1/lib/arm64, /vendor/lib64, /system/lib64]]
46
48
 
47
- > values > colors.xml
49
+ Suppressed: java.lang.ClassNotFoundException: com.example.minami.samplecode
48
50
 
49
- > dimens.xml
51
+ Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack trace available
50
52
 
51
- > strings.xml
52
-
53
- > styles.xml
53
+ ```
54
-
55
- > xml > method.xml
56
-
57
- > mykeyboard.xml
58
54
 
59
55
 
60
56
 
61
- ```
57
+ ###ここに問題ありそう?
62
58
 
59
+ ```layout/input.xml
60
+
61
+ <?xml version="1.0" encoding="utf-8"?>
62
+
63
+
64
+
65
+ <com.example.minami.samplecode
66
+
67
+ xmlns:android="http://schemas.android.com/apk/res/android"
68
+
69
+ android:id="@+id/keyboard"
70
+
71
+ android:layout_alignParentBottom="true"
72
+
73
+ android:layout_width="match_parent"
74
+
75
+ android:layout_height="wrap_content"
76
+
63
- ###デバッグ
77
+ />
64
78
 
65
79
  ```
66
80
 
67
- 04-18 14:45:22.557 22795-22795/? I/art: Late-enabling -Xcheck:jni
81
+ ###AndroidManifest.xml
68
82
 
69
- 04-18 14:45:22.625 22795-22795/com.example.minami.samplecode W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.example.minami.samplecode-1/split_lib_dependencies_apk.apk --oat-file=/data/dalvik-cache/arm64/data@app@com.example.minami.samplecode-1@split_lib_dependencies_apk.apk@classes.dex) because non-0 exit status
83
+ ```AndroidManifest.xml
70
84
 
71
- 04-18 14:45:22.750 22795-22795/com.example.minami.samplecode W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.example.minami.samplecode-1/split_lib_slice_0_apk.apk --oat-file=/data/dalvik-cache/arm64/data@app@com.example.minami.samplecode-1@split_lib_slice_0_apk.apk@classes.dex) because non-0 exit status
85
+ <?xml version="1.0" encoding="utf-8"?>
72
86
 
73
- 04-18 14:45:22.782 22795-22795/com.example.minami.samplecode W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.example.minami.samplecode-1/split_lib_slice_1_apk.apk --oat-file=/data/dalvik-cache/arm64/data@app@com.example.minami.samplecode-1@split_lib_slice_1_apk.apk@classes.dex) because non-0 exit status
87
+ <manifest xmlns:android="http://schemas.android.com/apk/res/android"
74
88
 
75
- 04-18 14:45:22.813 22795-22795/com.example.minami.samplecode W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.example.minami.samplecode-1/split_lib_slice_2_apk.apk --oat-file=/data/dalvik-cache/arm64/data@app@com.example.minami.samplecode-1@split_lib_slice_2_apk.apk@classes.dex) because non-0 exit status
89
+ package="com.example.minami.samplecode">
76
90
 
77
- 04-18 14:45:22.845 22795-22795/com.example.minami.samplecode W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.example.minami.samplecode-1/split_lib_slice_3_apk.apk --oat-file=/data/dalvik-cache/arm64/data@app@com.example.minami.samplecode-1@split_lib_slice_3_apk.apk@classes.dex) because non-0 exit status
78
91
 
79
- 04-18 14:45:22.879 22795-22795/com.example.minami.samplecode W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.example.minami.samplecode-1/split_lib_slice_4_apk.apk --oat-file=/data/dalvik-cache/arm64/data@app@com.example.minami.samplecode-1@split_lib_slice_4_apk.apk@classes.dex) because non-0 exit status
80
92
 
81
- 04-18 14:45:22.913 22795-22795/com.example.minami.samplecode W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.example.minami.samplecode-1/split_lib_slice_5_apk.apk --oat-file=/data/dalvik-cache/arm64/data@app@com.example.minami.samplecode-1@split_lib_slice_5_apk.apk@classes.dex) because non-0 exit status
93
+ <application
82
94
 
83
- 04-18 14:45:22.945 22795-22795/com.example.minami.samplecode W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.example.minami.samplecode-1/split_lib_slice_6_apk.apk --oat-file=/data/dalvik-cache/arm64/data@app@com.example.minami.samplecode-1@split_lib_slice_6_apk.apk@classes.dex) because non-0 exit status
95
+ android:allowBackup="true"
84
96
 
85
- 04-18 14:45:22.977 22795-22795/com.example.minami.samplecode W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.example.minami.samplecode-1/split_lib_slice_7_apk.apk --oat-file=/data/dalvik-cache/arm64/data@app@com.example.minami.samplecode-1@split_lib_slice_7_apk.apk@classes.dex) because non-0 exit status
97
+ android:icon="@mipmap/ic_launcher"
86
98
 
87
- 04-18 14:45:23.015 22795-22795/com.example.minami.samplecode W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.example.minami.samplecode-1/split_lib_slice_8_apk.apk --oat-file=/data/dalvik-cache/arm64/data@app@com.example.minami.samplecode-1@split_lib_slice_8_apk.apk@classes.dex) because non-0 exit status
99
+ android:label="@string/app_name"
88
100
 
89
- 04-18 14:45:23.047 22795-22795/com.example.minami.samplecode W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.example.minami.samplecode-1/split_lib_slice_9_apk.apk --oat-file=/data/dalvik-cache/arm64/data@app@com.example.minami.samplecode-1@split_lib_slice_9_apk.apk@classes.dex) because non-0 exit status
101
+ android:roundIcon="@mipmap/ic_launcher_round"
90
102
 
91
- 04-18 14:45:23.048 22795-22795/com.example.minami.samplecode W/System: ClassLoader referenced unknown path: /data/app/com.example.minami.samplecode-1/lib/arm64
103
+ android:supportsRtl="true"
92
104
 
93
- 04-18 14:45:23.050 22795-22795/com.example.minami.samplecode I/InstantRun: starting instant run server: is main process
105
+ android:theme="@style/AppTheme">
94
106
 
95
- 04-18 14:45:23.101 22795-22795/com.example.minami.samplecode W/art: Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
96
107
 
97
- 04-18 14:45:23.213 22795-22963/com.example.minami.samplecode D/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: true
98
108
 
99
- 04-18 14:45:23.249 22795-22963/com.example.minami.samplecode I/Adreno: QUALCOMM build : bf7710d, I0bc8e21cf2
109
+ <service
100
110
 
101
- Build Date : 03/09/16
111
+ android:name=".InputIME"
102
112
 
103
- OpenGL ES Shader Compiler Version: XE031.06.00.02
113
+ android:label="@string/fast_input_label"
104
114
 
105
- Local Branch :
115
+ android:permission="android.permission.BIND_INPUT_METHOD">
106
116
 
107
- Remote Branch : quic/LA.BF64.1.2.2_rb4.28
117
+ <intent-filter>
108
118
 
109
- Remote Branch : NONE
119
+ <action android:name="android.view.InputMethod" />
110
120
 
111
- Reconstruct Branch : NOTHING
121
+ </intent-filter>
112
122
 
113
- 04-18 14:45:23.254 22795-22963/com.example.minami.samplecode I/OpenGLRenderer: Initialized EGL, version 1.4
114
123
 
115
- 04-18 14:45:23.281 22795-22795/com.example.minami.samplecode W/art: Before Android 4.1, method int android.support.v7.widget.ListViewCompat.lookForSelectablePosition(int, boolean) would have incorrectly overridden the package-private method in android.widget.ListView
116
124
 
125
+ <meta-data
126
+
127
+ android:name="android.view.im"
128
+
129
+ android:resource="@xml/method" />
130
+
131
+ </service>
132
+
133
+
134
+
135
+ <activity
136
+
137
+ android:name="InputIMESetting"
138
+
139
+ android:label="@string/action_setting">
140
+
141
+ <intent-filter>
142
+
143
+ <action android:name="android.intent.action.MAIN" />
144
+
117
- 04-18 14:45:23.360 22795-22795/com.example.minami.samplecode I/Timeline: Timeline: Activity_idle id: android.os.BinderProxy@403d07b time:5867131
145
+ <category android:name="android.intent.category.LAUNCHER" />
146
+
147
+
148
+
149
+ </intent-filter>
150
+
151
+ </activity>
152
+
153
+
154
+
155
+
156
+
157
+ </application>
158
+
159
+
160
+
161
+ </manifest>
118
162
 
119
163
  ```

2

デバッグ

2017/04/18 06:38

投稿

rei-
rei-

スコア11

test CHANGED
File without changes
test CHANGED
@@ -60,152 +60,60 @@
60
60
 
61
61
  ```
62
62
 
63
-
64
-
65
- ###コンソール
63
+ ###デバッグ
66
64
 
67
65
  ```
68
66
 
69
- Executing tasks: [:app:assembleDebug]
67
+ 04-18 14:45:22.557 22795-22795/? I/art: Late-enabling -Xcheck:jni
70
68
 
69
+ 04-18 14:45:22.625 22795-22795/com.example.minami.samplecode W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.example.minami.samplecode-1/split_lib_dependencies_apk.apk --oat-file=/data/dalvik-cache/arm64/data@app@com.example.minami.samplecode-1@split_lib_dependencies_apk.apk@classes.dex) because non-0 exit status
71
70
 
71
+ 04-18 14:45:22.750 22795-22795/com.example.minami.samplecode W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.example.minami.samplecode-1/split_lib_slice_0_apk.apk --oat-file=/data/dalvik-cache/arm64/data@app@com.example.minami.samplecode-1@split_lib_slice_0_apk.apk@classes.dex) because non-0 exit status
72
72
 
73
- Configuration on demand is an incubating feature.
73
+ 04-18 14:45:22.782 22795-22795/com.example.minami.samplecode W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.example.minami.samplecode-1/split_lib_slice_1_apk.apk --oat-file=/data/dalvik-cache/arm64/data@app@com.example.minami.samplecode-1@split_lib_slice_1_apk.apk@classes.dex) because non-0 exit status
74
74
 
75
- NDK is missing a "platforms" directory.
75
+ 04-18 14:45:22.813 22795-22795/com.example.minami.samplecode W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.example.minami.samplecode-1/split_lib_slice_2_apk.apk --oat-file=/data/dalvik-cache/arm64/data@app@com.example.minami.samplecode-1@split_lib_slice_2_apk.apk@classes.dex) because non-0 exit status
76
76
 
77
- If you are using NDK, verify the ndk.dir is set to a valid NDK directory. It is currently set to /Users/minami/Library/Android/sdk/ndk-bundle.
77
+ 04-18 14:45:22.845 22795-22795/com.example.minami.samplecode W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.example.minami.samplecode-1/split_lib_slice_3_apk.apk --oat-file=/data/dalvik-cache/arm64/data@app@com.example.minami.samplecode-1@split_lib_slice_3_apk.apk@classes.dex) because non-0 exit status
78
78
 
79
- If you are not using NDK, unset the NDK variable from ANDROID_NDK_HOME or local.properties to remove this warning.
79
+ 04-18 14:45:22.879 22795-22795/com.example.minami.samplecode W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.example.minami.samplecode-1/split_lib_slice_4_apk.apk --oat-file=/data/dalvik-cache/arm64/data@app@com.example.minami.samplecode-1@split_lib_slice_4_apk.apk@classes.dex) because non-0 exit status
80
80
 
81
+ 04-18 14:45:22.913 22795-22795/com.example.minami.samplecode W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.example.minami.samplecode-1/split_lib_slice_5_apk.apk --oat-file=/data/dalvik-cache/arm64/data@app@com.example.minami.samplecode-1@split_lib_slice_5_apk.apk@classes.dex) because non-0 exit status
81
82
 
83
+ 04-18 14:45:22.945 22795-22795/com.example.minami.samplecode W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.example.minami.samplecode-1/split_lib_slice_6_apk.apk --oat-file=/data/dalvik-cache/arm64/data@app@com.example.minami.samplecode-1@split_lib_slice_6_apk.apk@classes.dex) because non-0 exit status
82
84
 
83
- Incremental java compilation is an incubating feature.
85
+ 04-18 14:45:22.977 22795-22795/com.example.minami.samplecode W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.example.minami.samplecode-1/split_lib_slice_7_apk.apk --oat-file=/data/dalvik-cache/arm64/data@app@com.example.minami.samplecode-1@split_lib_slice_7_apk.apk@classes.dex) because non-0 exit status
84
86
 
85
- :app:buildInfoDebugLoader
87
+ 04-18 14:45:23.015 22795-22795/com.example.minami.samplecode W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.example.minami.samplecode-1/split_lib_slice_8_apk.apk --oat-file=/data/dalvik-cache/arm64/data@app@com.example.minami.samplecode-1@split_lib_slice_8_apk.apk@classes.dex) because non-0 exit status
86
88
 
87
- :app:preBuild UP-TO-DATE
89
+ 04-18 14:45:23.047 22795-22795/com.example.minami.samplecode W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.example.minami.samplecode-1/split_lib_slice_9_apk.apk --oat-file=/data/dalvik-cache/arm64/data@app@com.example.minami.samplecode-1@split_lib_slice_9_apk.apk@classes.dex) because non-0 exit status
88
90
 
89
- :app:preDebugBuild UP-TO-DATE
91
+ 04-18 14:45:23.048 22795-22795/com.example.minami.samplecode W/System: ClassLoader referenced unknown path: /data/app/com.example.minami.samplecode-1/lib/arm64
90
92
 
91
- :app:checkDebugManifest
93
+ 04-18 14:45:23.050 22795-22795/com.example.minami.samplecode I/InstantRun: starting instant run server: is main process
92
94
 
93
- :app:prepareComAndroidSupportAnimatedVectorDrawable2531Library
95
+ 04-18 14:45:23.101 22795-22795/com.example.minami.samplecode W/art: Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
94
96
 
95
- :app:prepareComAndroidSupportAppcompatV72531Library
97
+ 04-18 14:45:23.213 22795-22963/com.example.minami.samplecode D/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: true
96
98
 
97
- :app:prepareComAndroidSupportConstraintConstraintLayout102Library
99
+ 04-18 14:45:23.249 22795-22963/com.example.minami.samplecode I/Adreno: QUALCOMM build : bf7710d, I0bc8e21cf2
98
100
 
99
- :app:prepareComAndroidSupportSupportCompat2531Library
101
+ Build Date : 03/09/16
100
102
 
101
- :app:prepareComAndroidSupportSupportCoreUi2531Library
103
+ OpenGL ES Shader Compiler Version: XE031.06.00.02
102
104
 
103
- :app:prepareComAndroidSupportSupportCoreUtils2531Library
105
+ Local Branch :
104
106
 
105
- :app:prepareComAndroidSupportSupportFragment2531Library
107
+ Remote Branch : quic/LA.BF64.1.2.2_rb4.28
106
108
 
107
- :app:prepareComAndroidSupportSupportMediaCompat2531Library
109
+ Remote Branch : NONE
108
110
 
109
- :app:prepareComAndroidSupportSupportV42531Library
111
+ Reconstruct Branch : NOTHING
110
112
 
111
- :app:prepareComAndroidSupportSupportVectorDrawable2531Library
113
+ 04-18 14:45:23.254 22795-22963/com.example.minami.samplecode I/OpenGLRenderer: Initialized EGL, version 1.4
112
114
 
113
- :app:prepareDebugDependencies
115
+ 04-18 14:45:23.281 22795-22795/com.example.minami.samplecode W/art: Before Android 4.1, method int android.support.v7.widget.ListViewCompat.lookForSelectablePosition(int, boolean) would have incorrectly overridden the package-private method in android.widget.ListView
114
116
 
115
- :app:compileDebugAidl UP-TO-DATE
116
-
117
- :app:compileDebugRenderscript UP-TO-DATE
118
-
119
- :app:generateDebugBuildConfig UP-TO-DATE
120
-
121
- :app:generateDebugResValues UP-TO-DATE
122
-
123
- :app:generateDebugResources UP-TO-DATE
124
-
125
- :app:mergeDebugResources UP-TO-DATE
126
-
127
- :app:processDebugManifest UP-TO-DATE
128
-
129
- :app:processDebugResources UP-TO-DATE
130
-
131
- :app:generateDebugSources
132
-
133
- :app:incrementalDebugJavaCompilationSafeguard UP-TO-DATE
134
-
135
- :app:javaPreCompileDebug
136
-
137
- :app:compileDebugJavaWithJavac
138
-
139
- Incremental compilation of 1 classes completed in 0.555 secs.
140
-
141
- :app:mergeDebugShaders UP-TO-DATE
142
-
143
- :app:compileDebugShaders UP-TO-DATE
144
-
145
- :app:generateDebugAssets UP-TO-DATE
146
-
147
- :app:mergeDebugAssets UP-TO-DATE
148
-
149
- :app:processDebugJavaRes UP-TO-DATE
150
-
151
- :app:transformResourcesWithMergeJavaResForDebug UP-TO-DATE
152
-
153
- :app:packageInstantRunResourcesDebug UP-TO-DATE
154
-
155
- :app:fastDeployDebugExtractor UP-TO-DATE
156
-
157
- :app:generateDebugInstantRunAppInfo UP-TO-DATE
158
-
159
- :app:checkManifestChangesDebug
160
-
161
- :app:transformClassesWithExtractJarsForDebug UP-TO-DATE
162
-
163
- :app:transformClassesWithInstantRunVerifierForDebug
164
-
165
- :app:transformClassesWithDependencyCheckerForDebug UP-TO-DATE
166
-
167
- :app:compileDebugNdk UP-TO-DATE
168
-
169
- :app:mergeDebugJniLibFolders UP-TO-DATE
170
-
171
- :app:transformNativeLibsWithMergeJniLibsForDebug UP-TO-DATE
172
-
173
- :app:transformNativeLibsAndResourcesWithJavaResourcesVerifierForDebug UP-TO-DATE
117
+ 04-18 14:45:23.360 22795-22795/com.example.minami.samplecode I/Timeline: Timeline: Activity_idle id: android.os.BinderProxy@403d07b time:5867131
174
-
175
- :app:transformClassesWithInstantRunForDebug
176
-
177
- :app:transformClassesEnhancedWithInstantReloadDexForDebug
178
-
179
- :app:incrementalDebugTasks
180
-
181
- :app:preColdswapDebug
182
-
183
- :app:transformClassesWithInstantRunSlicerForDebug
184
-
185
- :app:transformClassesWithDexForDebug
186
-
187
- :app:validateSigningDebug
188
-
189
- :app:transformDexWithInstantRunDependenciesApkForDebug
190
-
191
- :app:transformDexWithInstantRunSlicesApkForDebug
192
-
193
- :app:packageDebug UP-TO-DATE
194
-
195
- :app:buildInfoGeneratorDebug
196
-
197
- :app:compileDebugSources
198
-
199
- :app:assembleDebug
200
-
201
-
202
-
203
- BUILD SUCCESSFUL
204
-
205
-
206
-
207
- Total time: 6.773 secs
208
-
209
-
210
118
 
211
119
  ```

1

コンソール内容追加

2017/04/18 05:50

投稿

rei-
rei-

スコア11

test CHANGED
File without changes
test CHANGED
@@ -59,3 +59,153 @@
59
59
 
60
60
 
61
61
  ```
62
+
63
+
64
+
65
+ ###コンソール
66
+
67
+ ```
68
+
69
+ Executing tasks: [:app:assembleDebug]
70
+
71
+
72
+
73
+ Configuration on demand is an incubating feature.
74
+
75
+ NDK is missing a "platforms" directory.
76
+
77
+ If you are using NDK, verify the ndk.dir is set to a valid NDK directory. It is currently set to /Users/minami/Library/Android/sdk/ndk-bundle.
78
+
79
+ If you are not using NDK, unset the NDK variable from ANDROID_NDK_HOME or local.properties to remove this warning.
80
+
81
+
82
+
83
+ Incremental java compilation is an incubating feature.
84
+
85
+ :app:buildInfoDebugLoader
86
+
87
+ :app:preBuild UP-TO-DATE
88
+
89
+ :app:preDebugBuild UP-TO-DATE
90
+
91
+ :app:checkDebugManifest
92
+
93
+ :app:prepareComAndroidSupportAnimatedVectorDrawable2531Library
94
+
95
+ :app:prepareComAndroidSupportAppcompatV72531Library
96
+
97
+ :app:prepareComAndroidSupportConstraintConstraintLayout102Library
98
+
99
+ :app:prepareComAndroidSupportSupportCompat2531Library
100
+
101
+ :app:prepareComAndroidSupportSupportCoreUi2531Library
102
+
103
+ :app:prepareComAndroidSupportSupportCoreUtils2531Library
104
+
105
+ :app:prepareComAndroidSupportSupportFragment2531Library
106
+
107
+ :app:prepareComAndroidSupportSupportMediaCompat2531Library
108
+
109
+ :app:prepareComAndroidSupportSupportV42531Library
110
+
111
+ :app:prepareComAndroidSupportSupportVectorDrawable2531Library
112
+
113
+ :app:prepareDebugDependencies
114
+
115
+ :app:compileDebugAidl UP-TO-DATE
116
+
117
+ :app:compileDebugRenderscript UP-TO-DATE
118
+
119
+ :app:generateDebugBuildConfig UP-TO-DATE
120
+
121
+ :app:generateDebugResValues UP-TO-DATE
122
+
123
+ :app:generateDebugResources UP-TO-DATE
124
+
125
+ :app:mergeDebugResources UP-TO-DATE
126
+
127
+ :app:processDebugManifest UP-TO-DATE
128
+
129
+ :app:processDebugResources UP-TO-DATE
130
+
131
+ :app:generateDebugSources
132
+
133
+ :app:incrementalDebugJavaCompilationSafeguard UP-TO-DATE
134
+
135
+ :app:javaPreCompileDebug
136
+
137
+ :app:compileDebugJavaWithJavac
138
+
139
+ Incremental compilation of 1 classes completed in 0.555 secs.
140
+
141
+ :app:mergeDebugShaders UP-TO-DATE
142
+
143
+ :app:compileDebugShaders UP-TO-DATE
144
+
145
+ :app:generateDebugAssets UP-TO-DATE
146
+
147
+ :app:mergeDebugAssets UP-TO-DATE
148
+
149
+ :app:processDebugJavaRes UP-TO-DATE
150
+
151
+ :app:transformResourcesWithMergeJavaResForDebug UP-TO-DATE
152
+
153
+ :app:packageInstantRunResourcesDebug UP-TO-DATE
154
+
155
+ :app:fastDeployDebugExtractor UP-TO-DATE
156
+
157
+ :app:generateDebugInstantRunAppInfo UP-TO-DATE
158
+
159
+ :app:checkManifestChangesDebug
160
+
161
+ :app:transformClassesWithExtractJarsForDebug UP-TO-DATE
162
+
163
+ :app:transformClassesWithInstantRunVerifierForDebug
164
+
165
+ :app:transformClassesWithDependencyCheckerForDebug UP-TO-DATE
166
+
167
+ :app:compileDebugNdk UP-TO-DATE
168
+
169
+ :app:mergeDebugJniLibFolders UP-TO-DATE
170
+
171
+ :app:transformNativeLibsWithMergeJniLibsForDebug UP-TO-DATE
172
+
173
+ :app:transformNativeLibsAndResourcesWithJavaResourcesVerifierForDebug UP-TO-DATE
174
+
175
+ :app:transformClassesWithInstantRunForDebug
176
+
177
+ :app:transformClassesEnhancedWithInstantReloadDexForDebug
178
+
179
+ :app:incrementalDebugTasks
180
+
181
+ :app:preColdswapDebug
182
+
183
+ :app:transformClassesWithInstantRunSlicerForDebug
184
+
185
+ :app:transformClassesWithDexForDebug
186
+
187
+ :app:validateSigningDebug
188
+
189
+ :app:transformDexWithInstantRunDependenciesApkForDebug
190
+
191
+ :app:transformDexWithInstantRunSlicesApkForDebug
192
+
193
+ :app:packageDebug UP-TO-DATE
194
+
195
+ :app:buildInfoGeneratorDebug
196
+
197
+ :app:compileDebugSources
198
+
199
+ :app:assembleDebug
200
+
201
+
202
+
203
+ BUILD SUCCESSFUL
204
+
205
+
206
+
207
+ Total time: 6.773 secs
208
+
209
+
210
+
211
+ ```