-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PR build kotlin #725
base: master
Are you sure you want to change the base?
PR build kotlin #725
Conversation
…he javarosa functionality, and can be removed once the capability to build kotlin from gradle and from maven is completed. Added a kotlin file to `src/test` and to `src/main` to ensure compilation finds appropriate kotlin files and builds them.
…kotlin version 1.8.22
…; doesn't `like The 'java' plugin has been applied, but it is not compatible with the Android plugins.`
Couple of questions for the maintainers @seadowg @lognaturel ... |
First and simplest, are you okay if I bring the gradle version up to 8.2, matching what Collect uses? |
Second, and more involved.... There's a gradle plugin 'com.android.library' that's tailor-made for this situation. Does the android linting against a jvm library without needing to go multi-platform project (the only other way to get gradle to target both jvm and android code in the same gradle file) I've got it working locally. It requires ANDROID_HOME to be set on the build machine (or have a local.properties file it can use to find it). Is that acceptable for the CICD process? |
Separately, the lint options would now be set in I've been testing by playing with these options:
I'd want confirmation from the maintainers about which options to specify, and to what values. (e.g. I'm pretty sure that's not where you want the output to go) |
Sounds good! No problem with that.
We already use Our
I think we're good to just use the default lint options, which I'd hope means we don't have to specify anything. |
whoops, typo. Sorry. Not Gradle doesn't like having |
Ah I didn't know there was a plugin just for lint! Are we able to just use that and avoid the switching between plugin set hackery then? |
That's what I'm aiming for. |
….0; update `TargetSdkVersion` from 30 to 31, as required by Google Play (minSDK still at 21)
@seadowg any chance the CI server can upgrade to java 17? Upgrading gradle -> upgrading android plugin -> J17
|
Yeah that should be fine. I imagine you can just move to the latest version of cimg/android. |
I don't have a login for your CI server. One of the maintainers will need to do it, methinks. Unless you want to give me temp access (I prefer not to have it, but I appreciate it might be easier on you) |
Ah no need to access the CI server. The setup is configured in |
Have I mentioned how much I hate doing configuration? That's the upgrading of the gradle and the current supporting plugins. Now that the build image is amenable, I'll move to the |
🤯 This is amazing, thank you!!
Really appreciate you taking it on. We dropped trying to get Kotlin in not too long ago because it seemed like a deep rabbit hole. Fantastic to see it coming together. |
… for CircleCI to call whilst setting up the replacement android lint task. Necessary because gradle does not support targeting kotlin at both android and the jvm in the same build, so to introduce `com.android.lint`, the `com.android.library` plugin must be removed.
…running a separate build targeted at Android bytecode
…SHOT.jar` and the attributes in the manifest.
Hiya - I think I've fulfilled the PR ask, and a bit more. It's building kotlin code interpolated with java code, both source and test. See The gradle build has been updated to use Currently, it the lint checks are set to default values, as the previous approach was. After this comment, I'm going to change the setting I've run the maven target Changing plugin targets was easier by upgrading gradle to 8.2. This invoved upgrading a couple of the plugins and changing some deprecated syntax in the build.gradle file that had been removed. |
@seadowg - ready for review |
@jack-bolles sorry I completely missed this that last comment. Will have a look as soon as I can. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Amazing!
It looks like there's a few "work in progress" style commits you can get rid of now everything is green:
I wanted to try converting a class to Kotlin (I started CompareChildToAbsoluteExpression
) and everything worked like charm in IntelliJ and on a run of ./gradle check
. I wasn't able to get mvn package
to work however:
[ERROR] COMPILATION ERROR :
[INFO] -------------------------------------------------------------
[ERROR] <path>/javarosa/src/main/java/org/javarosa/core/model/EqualityExpressionIndexFilterStrategy.java:[55,58] cannot find symbol
symbol: class CompareChildToAbsoluteExpression
location: class org.javarosa.core.model.EqualityExpressionIndexFilterStrategy
Potentially Java classes are not able to access Kotlin ones? Any ideas?
} | ||
|
||
apply plugin: 'com.android.lint' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could this not just be in the plugins
block above?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It doesn't work if I do. Gradle complains with org.gradle.api.plugins.UnknownPluginException: Plugin [id: 'com.android.lint'] was not found in any of the following sources:
compileJava.options.encoding = "UTF-8" | ||
compileTestJava.options.encoding = "UTF-8" | ||
|
||
sourceCompatibility = 1.8 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I need to confirm this for myself, but I think (and a bunch of the other Java 8 configs in this file) this can be JavaVersion.VERSION_17
now. Android has made this extra confusing as of late.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I defer to your Android knowledge. I erred on the side of caution. LMK what to set it to.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you talking about increasing both the sourceCompatibility and the toolchain language version? That would allow for newer features of the language to be used in the code (sourceCompatibility without toolchain would mean use a newer jdk to build but abstain from using newer syntax in the library code)
However, I am guessing the target compatibility will remain as 1.8 right? As long as the binaries are 1.8 compatible then the same set of android devices should be able to use it without issues.
At least that's how I understand it all. I am not familiar with how ODK javarosa works TBH.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you talking about increasing both the sourceCompatibility and the toolchain language version?
Yes. The main client for JavaRosa (https://github.com/getodk/collect) already uses Java 17, so I think we're ok to make the bump. I think you're pointing out here that that would mean incompatibility with other projects that are using an older Java toolchain though - that's something we'd need to update in the README.md
.
However, I am guessing the target compatibility will remain as 1.8 right? As long as the binaries are 1.8 compatible then the same set of android devices should be able to use it without issues.
I'm pretty sure that targetCompatibility
needs to be the same or newer than sourceCompatibility
(https://developer.android.com/build/jdks#target-compat).
In response to my earlier comment about the "cannot find symbol" problem: it looks like Maven is less forgiving than Gradle when it comes to a mixed language project according to this SO. I'll spend a bit of time seeing if I can fix it and report back. |
It actually looks like @jack-bolles had already setup the |
I was treating interop as a separate PR. To make that work, the ordering of the pom has to change, and the docs would have to be built by dokka instead of javadoc. Would you like it as part of this PR or as an explicit, separate one? |
I've always left them in to show the work (both what was and what was not considered) and the evolution. |
Right. I'd not anticipated the problems maven would present for interop (although I guess it's not surprising given the prevalence of Gradle in the Kotlin world). I like the idea of taking this as a first step: we get the ability to write code in/convert code to Kotlin providing the Kotlin goes all the way to the "edge" of the library (no Java depends on any Kotlin). That would let us convert everything in the As you suggest in the PR description, it might make more sense to just get rid of Maven rather than go further down the road of getting Kotlin working with it. This would be great for other reasons (no duplication of dependencies, multiple version declarations etc), so I think it's best to get to interop through that route. I'll create an issue for it.
Makes sense! I'm forgetting we can always squash merge with Github if we want to keep context here, but prevent noise in the |
Hi folks, Is there anything stopping this from being accepted (except the build.gradle merge)? 0efd26d is a necessary evil until some of the core code becomes kotlin'd. It's the only code that exercises the fact that the Kotlin-Java interop build is working. |
I do see your point about having some Kotlin in there to stop the config regressing. How about converting some existing code rather than introducing new "demo" code? I think |
Closes #724
What has been done to verify that this works as intended?
both gradle and maven build scripts have been run. Both with explicit failures - to make sure they happen and its not a false positive - and with a working test that passes.
Why is this the best possible solution? Were any other approaches considered?
A stepwise solution. The project should consider committing to one or the other build tool
How does this change affect users? Describe intentional changes to behavior and behavior that could have accidentally been affected by code changes. In other words, what are the regression risks?
N/A
Do we need any specific form for testing your changes? If so, please attach one.
There are tests in the codebase that rely on kotlin being compiled in the test dir and the source dir.
Manually verified that the source files and the class files are in the appropriate jars.
What hasn't been tested is anything special done by CircleCI in its creating of artefacts. That should be done by a maintainer with the appropriate rights.
Does this change require updates to documentation? If so, please file an issue here and include the link below.
N/A