回答編集履歴

1

added another suggestion

2016/04/11 13:36

投稿

aja
aja

スコア3733

test CHANGED
@@ -27,3 +27,131 @@
27
27
 
28
28
 
29
29
  ![Project Structure](f1908386e8d3fa7082ff165c39561046.png)
30
+
31
+
32
+
33
+
34
+
35
+ Project の最初の起動やビルドで
36
+
37
+ Gradle Consoleにログが出ますが
38
+
39
+ ここから推測できます
40
+
41
+ ```gradle
42
+
43
+ com.android.support:appcompat-v7:23.+
44
+
45
+ ```
46
+
47
+ とすると
48
+
49
+
50
+
51
+ ```log
52
+
53
+ Executing tasks: [:app:generateDebugSources, :app:prepareDebugUnitTestDependencies, :app:mockableAndroidJar, :app:generateDebugAndroidTestSources]
54
+
55
+
56
+
57
+ Configuration on demand is an incubating feature.
58
+
59
+ :app:preBuild UP-TO-DATE
60
+
61
+ :app:preDebugBuild UP-TO-DATE
62
+
63
+ :app:checkDebugManifest
64
+
65
+ :app:preReleaseBuild UP-TO-DATE
66
+
67
+ :app:prepareComAndroidSupportAppcompatV72311Library UP-TO-DATE
68
+
69
+ :app:prepareComAndroidSupportSupportV42311Library UP-TO-DATE
70
+
71
+ :app:prepareDebugDependencies
72
+
73
+ :app:compileDebugAidl UP-TO-DATE
74
+
75
+ :app:compileDebugRenderscript UP-TO-DATE
76
+
77
+ :app:generateDebugBuildConfig UP-TO-DATE
78
+
79
+ :app:generateDebugAssets UP-TO-DATE
80
+
81
+ :app:mergeDebugAssets UP-TO-DATE
82
+
83
+ :app:generateDebugResValues UP-TO-DATE
84
+
85
+ :app:generateDebugResources UP-TO-DATE
86
+
87
+ :app:mergeDebugResources
88
+
89
+ :app:processDebugManifest UP-TO-DATE
90
+
91
+ :app:processDebugResources
92
+
93
+ :app:generateDebugSources
94
+
95
+ :app:preDebugUnitTestBuild UP-TO-DATE
96
+
97
+ :app:prepareDebugUnitTestDependencies
98
+
99
+ :app:mockableAndroidJar
100
+
101
+ :app:preDebugAndroidTestBuild UP-TO-DATE
102
+
103
+ :app:prepareDebugAndroidTestDependencies
104
+
105
+ :app:compileDebugAndroidTestAidl UP-TO-DATE
106
+
107
+ :app:processDebugAndroidTestManifest UP-TO-DATE
108
+
109
+ :app:compileDebugAndroidTestRenderscript UP-TO-DATE
110
+
111
+ :app:generateDebugAndroidTestBuildConfig UP-TO-DATE
112
+
113
+ :app:generateDebugAndroidTestAssets UP-TO-DATE
114
+
115
+ :app:mergeDebugAndroidTestAssets UP-TO-DATE
116
+
117
+ :app:generateDebugAndroidTestResValues UP-TO-DATE
118
+
119
+ :app:generateDebugAndroidTestResources UP-TO-DATE
120
+
121
+ :app:mergeDebugAndroidTestResources UP-TO-DATE
122
+
123
+ :app:processDebugAndroidTestResources UP-TO-DATE
124
+
125
+ :app:generateDebugAndroidTestSources UP-TO-DATE
126
+
127
+
128
+
129
+ BUILD SUCCESSFUL
130
+
131
+
132
+
133
+ Total time: 7.368 secs
134
+
135
+ ```
136
+
137
+
138
+
139
+ このケースでは
140
+
141
+ :app:prepareComAndroidSupportAppcompatV72311Library UP-TO-DATE
142
+
143
+ なので
144
+
145
+ com.android.support:appcompat-v7:23.1.1
146
+
147
+
148
+
149
+
150
+
151
+ :app:prepareComAndroidSupportAppcompatV72330Library UP-TO-DATE
152
+
153
+ というログのケースでは
154
+
155
+ com.android.support:appcompat-v7:23.3.0
156
+
157
+