如何从 android-studio 中的包外部目录访问 .java 文件?
How to access .java files from a directory outside of a package in android-studio?
我尝试解决这个问题已经好几个小时了,但没有在互联网上找到解决方案。
我的项目如下所示:
我想访问de.MayerhoferSimon.Vertretungsplan
包中标记目录下的文件。 (是的,我知道包应该是小写的。)
这可能吗?如果可以,怎么做?
我在 :app
模块的 .gradle 文件中尝试了一些依赖项,但没有任何效果。
在这种情况下,您应该为您的 webuntiaccessor 代码创建一个库模块,而不是将它放在 libs 文件夹中。
root
settings.gradle
app
build.gradle
webuntisaccessor
src
main
java
build.gradle
在settings.gradle
中:
include ':webuntisaccessor' , ':app'
在webuntisaccessor/build.gradle
apply plugin: 'com.android.library'
在app/build.gradle
中添加:
dependencies {
compile project(':webuntisaccessor')
}
我尝试解决这个问题已经好几个小时了,但没有在互联网上找到解决方案。 我的项目如下所示:
de.MayerhoferSimon.Vertretungsplan
包中标记目录下的文件。 (是的,我知道包应该是小写的。)
这可能吗?如果可以,怎么做?
我在 :app
模块的 .gradle 文件中尝试了一些依赖项,但没有任何效果。
在这种情况下,您应该为您的 webuntiaccessor 代码创建一个库模块,而不是将它放在 libs 文件夹中。
root
settings.gradle
app
build.gradle
webuntisaccessor
src
main
java
build.gradle
在settings.gradle
中:
include ':webuntisaccessor' , ':app'
在webuntisaccessor/build.gradle
apply plugin: 'com.android.library'
在app/build.gradle
中添加:
dependencies {
compile project(':webuntisaccessor')
}