gpt4 book ai didi

java - Android Studio 1.0.1 引用 java 模块时包不存在

转载 作者:太空宇宙 更新时间:2023-11-04 14:14:50 24 4
gpt4 key购买 nike

我正在开发一个 Android 应用程序,需要 Java 库应用程序(我也编写过)才能运行。

我遵循了 idunnololz 指南 here将项目添加为 java 库,这似乎添加没问题。我的 java 项目名为 Osmosis,包含 2 个包 search 和 common。

然后我尝试引用我的项目,Android Studio 非常有帮助地询问我是否希望引用渗透。这似乎解决了错误,将 import Search.* 添加到我的 android 类的顶部。但是,当我运行我的应用程序时,出现错误:包不存在。在我单击“运行”之前,它没有显示任何错误。

任何人都可以提供有关如何解决此问题的建议吗?

我尝试过使缓存失效、清理和重建项目

我的settings.gradle似乎包含引用:

include ':app', ':osmosis'

这是我的 build.gradle

  // Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.0.0'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
jcenter()
}
}

应用程序构建.gradle

apply plugin: 'com.android.application'

android {
compileSdkVersion 21
buildToolsVersion "21.1.2"

defaultConfig {
applicationId "com.example.matt.windowrunner"
minSdkVersion 21
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.android.gms:play-services:6.5.87'
}

错误:

Error:(48, 14) error: package search does not exist
Error:(448, 7) error: cannot find symbol variable Search
Error:(460, 7) error: cannot find symbol variable Search
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Error:Execution failed for task ':app:compileDebugJava'.
> Compilation failed; see the compiler error output for details.

最佳答案

Can anyone give any advice on how to fix this?

您的依赖项闭包不会拉入库。在 build.gradle 中的另外两行 compile 行之后添加 compile project(:osmosis)

关于java - Android Studio 1.0.1 引用 java 模块时包不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27881138/

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