如何在android studio中将android模块转换为java模块

时间:2017-02-03 19:26:32

标签: android android-studio android-module

我为我的Android应用程序创建了三个模块,即app,domain和data。

错误地,我创建了域模块和数据模块作为android模块而不是Java模块。现在我想将它们替换为Java模块。

任何人都可以建议我如何实现这一目标吗?

enter image description here

1 个答案:

答案 0 :(得分:4)

您需要更改:

apply plugin: 'com.android.library'

apply plugin: 'java'

并在其后添加以下行:

sourceCompatibility= 1.7
targetCompatibility= 1.7

在你的build.gradle android库模块中。