从应用程序引用导入的模块(许可LVL)

时间:2018-02-26 16:41:45

标签: android android-lvl android-module

我按照说明如何设置Android应用程序的许可证,但我仍然没有参考导入的模块。

https://developer.android.com/google/play/licensing/setting-up.html#download-lvl

在我的屏幕上看到我已将模块导入我的App项目 - > “lvlLibrary”。

如何从我的Apps项目中引用该库?

项目结构: enter image description here

我的gradle(app):

dependencies {
//    compile project(':lvlLibrary') <- I TRIED THIS, BUT IT DOESN'T WORK.
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    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'
}

1 个答案:

答案 0 :(得分:0)

解决了它: 添加

implementation project(':lvlproject')
compile project(path: ':lvlproject')

到gradle(app)就可以了。