无法看到导入的模块

时间:2018-04-30 19:40:44

标签: android android-gradle build.gradle android-library

我从我之前的android项目中导入了模块但是当我尝试将其添加为库时它没有显示并且它没有显示为模块我只能在项目模式中看到模块我的gradle是工作正常

  

申请插件:' com.android.application'

我也在使用,但不知道为什么当我尝试从项目结构添加模块时它显示没有模块我将做什么我跟着很多问题而非解决我的问题我有所有的东西更新和最新版本
我的朋友。

apply plugin: 'com.android.application'

android {
compileSdkVersion 27
defaultConfig {
    applicationId "com.musicplayer.music.audioplayer"
    minSdkVersion 17
    targetSdkVersion 27
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

project.gradle

buildscript {

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


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

allprojects {
repositories {
    google()
    jcenter()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

0 个答案:

没有答案