Android Studio引用另一个模块module的方法

2023-01-08 13:47:22

适用情形

最近碰上这样一种情况: app需要引用jni功能 然后jni相关的功能被封装成一个android library 模块module

然后在app模块module中需要引用jni module的一个java
直接在app模块中引用这个类 提示无法解析这个类
android中引用别的module 需要加入对它的依赖
有两种添加方式 1. 直接修改build.gradle脚本引入
             2. android studio集成了这个功能 直接添加

修改build.gradle实现

app 模块的 build.gradle:
  dependencies {
      implementation fileTree(include: ['*.jar'], dir: 'libs')
      implementation 'com.android.support:appcompat-v7:26.1.0'
      implementation 'com.android.support.constraint:constraint-layout:1.0.2'
      testImplementation 'junit:junit:4.12'
      androidTestImplementation 'com.android.support.test:runner:1.0.1'
      androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'

      implementation project(':rkmpp') // 添加依赖模块
  }
implementation project(':rkmpp') rkmpp是要引用的module

android studio修改

1. 右键模块 -> open module settings
2. 选择Dependencies选项
3. 左下角有 + 符号 点击它 选择3 Module Dependency
4. 弹出的选项框中选要添加的module 确定
两种修改方法的效果是一致的 实际上都是修改build.gradle脚本
  • 作者:segment-fault
  • 原文链接:https://blog.csdn.net/qq_21358401/article/details/79042434
    更新时间:2023-01-08 13:47:22