gpt4 book ai didi

android - 导入 androidx.fragment.app.testing.FragmentScenario 的未解决引用

转载 作者:行者123 更新时间:2023-12-05 08:11:01 27 4
gpt4 key购买 nike

here 中所述使用 FragmentScenario 测试 fragment 我添加依赖项:

debugImplementation "androidx.fragment:fragment-testing:1.3.2"

但我不能从这个库中调用任何东西,android studio 也不知道它们。无法访问 EmptyFragmentActivity 或 launchFragmentInContainer。

最佳答案

首先需要在build.gradle中定义Google的Maven Repository:

allprojects {
repositories {
google()

// If you're using a version of Gradle lower than 4.1, you must instead use:
// maven {
// url 'https://maven.google.com'
// }
// An alternative URL is 'https://dl.google.com/dl/android/maven2/'
}
}

还有您提到的正确编程语言的依赖项:

dependencies {
def fragment_version = "1.3.2"

// Java language implementation
implementation "androidx.fragment:fragment:$fragment_version"
// Kotlin
implementation "androidx.fragment:fragment-ktx:$fragment_version"
// Testing Fragments in Isolation
debugImplementation "androidx.fragment:fragment-testing:$fragment_version"
}

关于android - 导入 androidx.fragment.app.testing.FragmentScenario 的未解决引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67079027/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com