質問編集履歴

2

a

2018/09/07 05:20

投稿

pecchan
pecchan

スコア555

test CHANGED
File without changes
test CHANGED
@@ -291,3 +291,67 @@
291
291
 
292
292
 
293
293
  ```
294
+
295
+
296
+
297
+ //build.gradle(Project)
298
+
299
+ ```java
300
+
301
+ // Top-level build file where you can add configuration options common to all sub-projects/modules.
302
+
303
+
304
+
305
+ buildscript {
306
+
307
+ ext.kotlin_version = '1.2.30'
308
+
309
+ repositories {
310
+
311
+ google()
312
+
313
+ jcenter()
314
+
315
+ }
316
+
317
+ dependencies {
318
+
319
+ classpath 'com.android.tools.build:gradle:3.1.3'
320
+
321
+ classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
322
+
323
+
324
+
325
+ // NOTE: Do not place your application dependencies here; they belong
326
+
327
+ // in the individual module build.gradle files
328
+
329
+ }
330
+
331
+ }
332
+
333
+
334
+
335
+ allprojects {
336
+
337
+ repositories {
338
+
339
+ google()
340
+
341
+ jcenter()
342
+
343
+ }
344
+
345
+ }
346
+
347
+
348
+
349
+ task clean(type: Delete) {
350
+
351
+ delete rootProject.buildDir
352
+
353
+ }
354
+
355
+
356
+
357
+ ```

1

2018/09/07 05:20

投稿

pecchan
pecchan

スコア555

test CHANGED
File without changes
test CHANGED
@@ -18,7 +18,7 @@
18
18
 
19
19
 
20
20
 
21
- どうしても原因分かりません。
21
+ どうしても原因分かりません。
22
22
 
23
23
 
24
24