最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

kotlin - AR Core with Sceneform for land area measurement - Stack Overflow

programmeradmin1浏览0评论

I'm developing an Android app in Kotlin that needs to implement AR Core with Sceneform for land area measurement.I need clarification on the appropriate implementation structure because I'm having problems with dependency conflicts.

  1. What is the correct dependency tree to avoid version conflicts between AR Core and Sceneform?
  2. How should these dependencies be structured in a Kotlin project?
  3. Are there specific version combinations known to work well together?

Current build.gradle dependencies:

implementation(libs.androidx.core.ktx) {
        exclude(group = "com.android.support")
    }
    implementation(libs.androidx.appcompat) {
        exclude(group = "com.android.support")
    }
    implementation(libs.material) {
        exclude(group = "com.android.support")
    }

  implementation("com.google.ar:core:1.41.0")
    implementation("com.google.ar.sceneform.ux:sceneform-ux:1.17.1") {
        exclude(group = "com.android.support")
    }
    implementation("com.google.ar.sceneform:core:1.17.1") {
        exclude(group = "com.android.support")
    }
implementation("androidx.core:core:1.12.0")
implementation("androidx.core:core-ktx:1.12.0")
implementation("androidx.appcompat:appcompat:1.6.1")`

I tried to implement AR Core with Sceneform in my Kotlin Android project for land area measurement functionality I implemented Basic implementation with default dependencies but they don't work.

发布评论

评论列表(0)

  1. 暂无评论