rory-bennett
02/17/2017, 4:27 PMjlleitschuh
02/28/2017, 6:31 PMjlleitschuh
03/06/2017, 11:39 PMehubbard
03/07/2017, 12:06 AMdavidgreens
03/07/2017, 7:21 AMehubbard
03/08/2017, 12:49 AMevanchooly
03/08/2017, 6:49 AMrussell
03/08/2017, 3:41 PMdector
03/16/2017, 4:33 PMKotlin
project with Gradle
on Linux ARM
system.
$ ./gradlew --version
------------------------------------------------------------
Gradle 3.3
------------------------------------------------------------
Build time: 2017-01-03 15:31:04 UTC
Revision: 075893a3d0798c0c1f322899b41ceca82e4e134b
Groovy: 2.4.7
Ant: Apache Ant(TM) version 1.9.6 compiled on June 29 2015
JVM: 1.8.0_121 (Oracle Corporation 25.121-b13)
OS: Linux 3.4.113-sun8i arm
$ ./gradlew build
:compileKotlin
Could not perform non-incremental compilation with Kotlin compile daemon, non-incremental compilation in fallback mode will be performed
Could not connect to kotlin daemon. Using fallback strategy.
e: net.rubygrapefruit.platform.NativeIntegrationUnavailableException: Native integration ProcessLauncher is not supported for Linux arm.
However, similar Java project is building successfully. Is there any chance to build Kotlin
projects on ARM?dector
03/16/2017, 5:06 PM./gradlew -Dkotlin.compiler.execution.strategy=in-process build
alexey.tsvetkov
03/17/2017, 9:35 AMilya.chernikov
03/17/2017, 10:06 AMmingkangpan
03/22/2017, 2:27 PMUsing kotlin incremental compilation
Could not perform incremental compilation with Kotlin compile daemon, non-incremental compilation in fallback mode will be performed
Could not connect to kotlin daemon. Using fallback strategy.
mingkangpan
03/22/2017, 2:28 PMalexey.tsvetkov
03/22/2017, 5:29 PMmingkangpan
03/22/2017, 5:31 PMmingkangpan
03/22/2017, 5:31 PMalexey.tsvetkov
03/22/2017, 5:40 PMmingkangpan
03/22/2017, 5:41 PMalexey.tsvetkov
03/22/2017, 5:45 PMBas
03/24/2017, 3:19 AMError:Error converting bytecode to dex:
Cause: Dex cannot parse version 52 byte code.
This is caused by library dependencies that have been compiled using Java 8 or above.
If you are using the 'java' gradle plugin in a library submodule add
targetCompatibility = '1.7'
sourceCompatibility = '1.7'
to that submodule's build.gradle file.
Error:1 error; aborting
Error:Execution failed for task ':app:transformClassesWithDexForDebug'.
> com.android.build.api.transform.TransformException: java.lang.RuntimeException: java.lang.RuntimeException: Unable to pre-dex '/Users/billey_b/.gradle/caches/modules-2/files-2.1/org.ethereumclassic/etherjar/0.4.0/32ea08094ed4ae49aac4e33956d7e37bdb071990/etherjar-0.4.0.jar' to '/Users/billey_b/dev/etc/etc-explorer/app/build/intermediates/pre-dexed/debug/etherjar-0.4.0_2e62e28c25aec63751fe82c3fa3505b6ce5a2a00.jar'
My gradle files https://gist.github.com/agonist/e4d291155a8c165c5bc053755d759a4c
I tried to add the compatibility 1.7 at various area of the build file but did not change anything.
Hint : if I remove the core module as dependency it worksbeholder
03/24/2017, 10:41 AMcy
03/24/2017, 1:48 PMcy
03/24/2017, 1:48 PMThis is caused by library dependencies that have been compiled using Java 8 or above.
cy
03/24/2017, 1:50 PMflyingburrito
04/01/2017, 8:51 PMEugen Martynov
04/14/2017, 12:06 AMjuliocbcotta
04/15/2017, 10:25 PMannyce
04/15/2017, 10:32 PMannyce
04/15/2017, 10:32 PMGroovyObject
. Does anyone have a workaround for this? Thanks