Skip to content
This repository has been archived by the owner on Jan 25, 2024. It is now read-only.

Commit

Permalink
- test nested module
Browse files Browse the repository at this point in the history
  • Loading branch information
mikepenz authored May 5, 2023
1 parent 5c450f0 commit 4c18b5f
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gradle-example/library-child-2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ plugins {

dependencies {
api("org.json:json:20220320")

api project(":library-child-2:library-child-child-1")
}

java {
Expand Down
18 changes: 18 additions & 0 deletions gradle-example/library-child-2/library-child-child-1/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
}

android {
compileSdk 32
defaultConfig {
minSdk 29
targetSdk 32
versionCode 1
versionName "1.0"
}
}

dependencies {
implementation 'androidx.core:core-ktx:1.8.0'
}
1 change: 1 addition & 0 deletions gradle-example/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ include ':library-parent-parent'
include ':library-parent'
include ':library-child-1'
include ':library-child-2'
include ':library-child-2:library-child-child-1'

0 comments on commit 4c18b5f

Please # to comment.