質問編集履歴

2

gradleの情報を追記しました。

2017/10/13 13:04

投稿

yulth1123
yulth1123

スコア41

test CHANGED
File without changes
test CHANGED
@@ -75,3 +75,211 @@
75
75
 
76
76
 
77
77
  }
78
+
79
+
80
+
81
+ app build.gradle
82
+
83
+
84
+
85
+ apply plugin: 'com.android.application'
86
+
87
+ apply plugin: 'kotlin-android'
88
+
89
+ apply plugin: 'kotlin-android-extensions'
90
+
91
+
92
+
93
+ android {
94
+
95
+ compileSdkVersion 25
96
+
97
+ buildToolsVersion "25.0.3"
98
+
99
+ defaultConfig {
100
+
101
+ applicationId "net.jushin.monemana"
102
+
103
+ minSdkVersion 23
104
+
105
+ targetSdkVersion 25
106
+
107
+ versionCode 1
108
+
109
+ versionName "1.0"
110
+
111
+ testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
112
+
113
+ }
114
+
115
+ buildTypes {
116
+
117
+ release {
118
+
119
+ minifyEnabled false
120
+
121
+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
122
+
123
+ }
124
+
125
+ }
126
+
127
+ }
128
+
129
+
130
+
131
+ dependencies {
132
+
133
+ compile fileTree(include: ['*.jar'], dir: 'libs')
134
+
135
+ androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
136
+
137
+ exclude group: 'com.android.support', module: 'support-annotations'
138
+
139
+ })
140
+
141
+ compile "org.jetbrains.anko:anko:$anko_version"
142
+
143
+ compile 'com.android.support:appcompat-v7:25.3.1'
144
+
145
+ compile 'com.android.support.constraint:constraint-layout:1.0.2'
146
+
147
+ compile 'com.android.support:design:25.3.1'
148
+
149
+ testCompile 'junit:junit:4.12'
150
+
151
+ compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
152
+
153
+ compile 'org.jetbrains.anko:anko-sdk15:0.8.3'
154
+
155
+ compile 'org.jetbrains.anko:anko-support-v4:0.8.3'
156
+
157
+ compile 'org.jetbrains.anko:anko-appcompat-v7:0.8.3'
158
+
159
+
160
+
161
+ // Appcompat-v7 (only Anko Commons)
162
+
163
+ compile "org.jetbrains.anko:anko-appcompat-v7-commons:$anko_version"
164
+
165
+
166
+
167
+ // Appcompat-v7 (Anko Layouts)
168
+
169
+ compile "org.jetbrains.anko:anko-appcompat-v7:$anko_version"
170
+
171
+ compile "org.jetbrains.anko:anko-coroutines:$anko_version"
172
+
173
+
174
+
175
+ // CardView-v7
176
+
177
+ compile "org.jetbrains.anko:anko-cardview-v7:$anko_version"
178
+
179
+
180
+
181
+ // Design
182
+
183
+ compile "org.jetbrains.anko:anko-design:$anko_version"
184
+
185
+ compile "org.jetbrains.anko:anko-design-coroutines:$anko_version"
186
+
187
+
188
+
189
+ // GridLayout-v7
190
+
191
+ compile "org.jetbrains.anko:anko-gridlayout-v7:$anko_version"
192
+
193
+
194
+
195
+ // Percent
196
+
197
+ compile "org.jetbrains.anko:anko-percent:$anko_version"
198
+
199
+
200
+
201
+ // RecyclerView-v7
202
+
203
+ compile "org.jetbrains.anko:anko-recyclerview-v7:$anko_version"
204
+
205
+ compile "org.jetbrains.anko:anko-recyclerview-v7-coroutines:$anko_version"
206
+
207
+
208
+
209
+ // Support-v4 (only Anko Commons)
210
+
211
+ compile "org.jetbrains.anko:anko-support-v4-commons:$anko_version"
212
+
213
+
214
+
215
+ // Support-v4 (Anko Layouts)
216
+
217
+ compile "org.jetbrains.anko:anko-support-v4:$anko_version"
218
+
219
+ }
220
+
221
+ repositories {
222
+
223
+ mavenCentral()
224
+
225
+ }
226
+
227
+
228
+
229
+
230
+
231
+ project build.gradle
232
+
233
+
234
+
235
+ // Top-level build file where you can add configuration options common to all sub-projects/modules.
236
+
237
+
238
+
239
+ buildscript {
240
+
241
+ ext.kotlin_version = '1.1.51'
242
+
243
+ ext.anko_version = '0.10.1'
244
+
245
+ repositories {
246
+
247
+ jcenter()
248
+
249
+ }
250
+
251
+ dependencies {
252
+
253
+ classpath 'com.android.tools.build:gradle:2.3.3'
254
+
255
+ classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
256
+
257
+
258
+
259
+ // NOTE: Do not place your application dependencies here; they belong
260
+
261
+ // in the individual module build.gradle files
262
+
263
+ }
264
+
265
+ }
266
+
267
+
268
+
269
+ allprojects {
270
+
271
+ repositories {
272
+
273
+ jcenter()
274
+
275
+ }
276
+
277
+ }
278
+
279
+
280
+
281
+ task clean(type: Delete) {
282
+
283
+ delete rootProject.buildDir
284
+
285
+ }

1

タグの追加

2017/10/13 13:04

投稿

yulth1123
yulth1123

スコア41

test CHANGED
File without changes
test CHANGED
File without changes