Using the dev/1 on Android #1331
Unchakable
started this conversation in
General
Replies: 2 comments
-
The |
Beta Was this translation helpful? Give feedback.
0 replies
-
I've added a CI job to publish the If you add the snapshots repo as a source you can get it from there now as well. <repository>
<id>maven-snapshots</id>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository> |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am developing a small Android mobile application for reading data from a controller. Since JAXB is not supported on Android, I can only use the dev/1 branch. But the Gradle project collector is used on android and I can't register it:
org.eclipse.milo milo-examples 1.0.0-SNAPSHOTI'm connecting dependencies, but I can't access the dev/1 functionality.
dependencies {
implementation(libs.appcompat)
implementation(libs.material)
implementation(libs.activity)
implementation(libs.constraintlayout)
testImplementation(libs.junit)
androidTestImplementation(libs.ext.junit)
androidTestImplementation(libs.espresso.core)
implementation(libs.sdk.client)
implementation(libs.eclipse.sdk.server)
implementation(libs.stack.core)
implementation(libs.stack.client)
implementation(libs.sdk.core)
implementation(libs.dictionary.reader)
}
I tried using plugin org.springframework.boot, but it causes critical errors during the build. Can I access the dev/1 branch in another way?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions