从另一个项目模块调用活动

时间:2018-08-09 11:14:29

标签: android android-8.0-oreo

我有一个具有两个模块的应用程序A,即应用程序和社交模块

我想从应用程序调用社交活动。这不可能吗?

在应用模块中,当我尝试输入社交活动时,它不会解析名称。

应用程序build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.example.a999160.myapplication"
        minSdkVersion 15
        targetSdkVersion 28
        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(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:28.0.0-rc01'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    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'
    implementation project(path: ':social', configuration: 'default')
}

社交的build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28

    defaultConfig {
        applicationId "com.example.social"
        minSdkVersion 15
        targetSdkVersion 28
        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:28.0.0-rc01'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    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'
}

enter image description here

2 个答案:

答案 0 :(得分:1)

您需要像这样将模块的依赖项添加到应用gradle中:

implementation project(':social')

否则您可以手动添加“社交”模块:

  1. 点击文件
  2. 转到项目结构
  3. 单击“依赖关系”,您会在左下角看到+号。
  4. 选择模块依赖性
  5. 选择要添加的模块。

现在,您可以在主应用程序中访问社交模块的所有成员。我希望这是您的期望。如果仍然遇到问题,请访问Here

答案 1 :(得分:0)

从{p>为“社交”模块更新build.gradle

apply plugin: 'com.android.application'

apply plugin: 'com.android.library'

否则这是不可能的(至少不可能,虽然尚未同时安装两个应用程序)。