无法在Android Studio 1.5.1中创建模块依赖

时间:2016-01-05 15:34:24

标签: android android-studio module

我在android studio上创建模块时遇到了问题。我最近下载并更新了它。

  

问题是当我为我的项目创建一个新模块时,它不会   编译为模块。

尝试在homeCityId中手动添加,但仍无效,我无法理解。

enter image description here

此图片代表我通常转到settings.gradle

创建的模块

模块gradle

File > New > New Module

apply plugin: 'com.android.library' android { compileSdkVersion 23 buildToolsVersion "23.0.2" defaultConfig { minSdkVersion 14 targetSdkVersion 23 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:23.1.1' compile 'com.squareup.okhttp:okhttp:2.3.0' compile 'com.squareup.retrofit:retrofit:2.0.0-beta2' compile 'com.squareup.retrofit:converter-gson:2.0.0-beta2' }

settings.gradle

  

问题是,这是一个错误?我怎么能弄清楚这个问题呢?

注意:在Android Studio 1.5之前,它正在运行。

修改

include ':app', ':rest'结果

./gradle projects

1 个答案:

答案 0 :(得分:1)

为了解决这个问题,我这样做了:

1 - 从项目结构中删除.idea文件夹。

2 - 然后重新打开项目。

项目将打开文件夹作为模块。