0

Android アプリのライセンスをセットアップする方法の指示に従いましたが、インポートされたモジュールを参照することに行き詰まっています。

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

モジュールをアプリ プロジェクト -> "lvlLibrary" にインポートしたことを画面で確認してください。

Apps プロジェクトからライブラリを参照するにはどうすればよいですか?

プロジェクトの構造: ここに画像の説明を入力

私のgradle(アプリ):

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'
}
4

1 に答える 1