s1m0nw1
10/24/2017, 9:12 AMorangy
10/25/2017, 7:21 PMorangy
10/25/2017, 9:01 PMorangy
10/27/2017, 11:49 AMmiha-x64
10/27/2017, 1:02 PMtriplem
10/27/2017, 8:34 PMorangy
10/31/2017, 5:42 PMSlackbot
11/02/2017, 5:31 PMMarc Knaup
11/03/2017, 5:48 PMHawk
11/03/2017, 5:49 PMpastjean
11/03/2017, 8:10 PMSola
11/08/2017, 1:26 PMkenkyee
11/09/2017, 7:58 PMorangy
11/14/2017, 1:10 PMorangy
11/17/2017, 9:23 AMspand
11/17/2017, 1:42 PMredrield
11/17/2017, 3:56 PMqwert_ukg
11/20/2017, 3:51 AMkimar
11/20/2017, 6:30 PMContent-Length
header, what can I do to check the size of the multiparts?orangy
11/21/2017, 1:47 PMresource
instead of file
in static sectiondave08
11/21/2017, 4:13 PMcy
11/21/2017, 5:36 PMjimn
11/22/2017, 4:14 AMjimn
11/24/2017, 6:00 PMjanvladimirmostert
11/25/2017, 6:29 PMktor
go the servlet route instead of running on top of Netty ?gotwalt
11/30/2017, 8:03 PMwineluis
12/01/2017, 11:12 PMjasondlee
12/07/2017, 3:17 PMjasondlee
12/07/2017, 5:24 PMjasondlee
12/07/2017, 7:18 PMjasondlee
12/07/2017, 7:18 PMgildor
12/08/2017, 3:28 AMjasondlee
12/11/2017, 7:05 PMgildor
12/12/2017, 6:06 AMplugins{}
block dsl instead of buildscript
common
module, because it’s empty and doesn’t contains gradle configandroid
, you need only one settings.gradle per project, other will be ignored
2. each module can use own buildscript, but you override it in your case. Just use one in root project. But better to rewrite config to plugins dsl instead.
For now I just define all buildscript dependencies in root build.gradle, without allprojects
3. You don’t need intermidiate build.gradle in android
, build.gradle in android:app is enough, but actually now android
contains only app
, so you can just flatten dirrectories
4. You have a lot of duplicate repositories declarations. You can define repos for all projects at the same time in root build.gradle, or have separate one for each module
5. You don’t need kotlin-stdlib in buildscript dependencies
6. Minor thing. You can use subprojects instead of allprojects if you don’t have any code or plugins in root project (like in your case)jasondlee
12/12/2017, 6:36 AMgildor
12/12/2017, 6:43 AMjasondlee
12/12/2017, 8:23 PMgildor
12/13/2017, 2:17 AM