如何在android studio中将android模块转换为java模块
作者:互联网
我已经为我的android应用创建了三个模块,分别是app,domain和data.
错误地,我已经将域和数据模块创建为android模块而不是Java模块.现在,我想将它们替换为Java模块.
谁能建议我如何实现这一目标?
解决方法:
您需要更改:
apply plugin: 'com.android.library'
至
apply plugin: 'java'
并在其后添加以下行:
sourceCompatibility= 1.7
targetCompatibility= 1.7
在您的build.gradle android库模块中.
标签:android-studio,android-module,android 来源: https://codeday.me/bug/20191026/1935267.html