Nutomic
Nutomic
Yes it does, eg `http://jointest.lemmy.ml:1234/docs/introduction.html`. Needs to be fixed in nginx config most likely.
I tried to add this with the following code in build.gradle: ``` android { buildTypes { debug { minifyEnabled true proguardFile file("proguard-rules.pro") dependencies { provided 'org.scala-lang:scala-library:2.11.4' } } release {...
If I set `minifyEnabled false`, a clean build gives the following error after running almost 5 minutes: ``` UNEXPECTED TOP-LEVEL EXCEPTION: com.android.dex.DexIndexOverflowException: method ID not in [0, 0xffff]: 65536 at...
Okay I've added Multidex, but now incremental compile time has risen to over 2 minutes. [Here's my build.gradle](http://pastebin.com/s5csmM3r), and I've also set `` in manifest. Any idea what I'm doing...
[Here it is](http://pastebin.mozilla.org/7417034) Not sure why the time went down to 1:30 now, but obviously that's still too long.
@Arneball I tried to apply your example to my project, but I couldn't quite figure out what I need to copy to my existing project. When I tried it, the...
Okay I added that, although I'm not sure how to test if it works. There's no extra CPU usage after changes, and incremental compile after a minor change is about...
Lol, that would be useful :D
Gradle now supports Jacoco. You can enable it with `buildTypes.debug.testCoverageEnabled true` and then run `./gradlew connectedAndroidTest`. This works in Java projects, but in my Scala project, the report is not...
I tried to follow that actor, and there seems to be an error because an activity with the same id was already received before. Lemmy rejects duplicates, so make sure...