import SetupWizardLibrary

This commit is contained in:
Peter Cai 2021-03-15 16:46:29 +08:00
parent 533e5bc148
commit c2d7c45db5
4 changed files with 11 additions and 0 deletions

4
.gitmodules vendored Normal file
View File

@ -0,0 +1,4 @@
[submodule "libs/SetupWizardLibrary"]
path = libs/SetupWizardLibrary
url = https://cgit.typeblog.net/SetupWizardLibrary.git
branch = android11-dev

View File

@ -43,6 +43,8 @@ dependencies {
implementation 'com.google.android.material:material:1.3.0' implementation 'com.google.android.material:material:1.3.0'
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0' implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0'
implementation 'mobi.upod:time-duration-picker:1.1.3' implementation 'mobi.upod:time-duration-picker:1.1.3'
debugImplementation project(path: ':setup-wizard-lib', configuration: 'gingerbreadCompatDebugRuntimeElements')
releaseImplementation project(path: ':setup-wizard-lib', configuration: 'gingerbreadCompatReleaseRuntimeElements')
testImplementation 'junit:junit:4.12' testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.4.0-alpha04' androidTestImplementation 'androidx.test:runner:1.4.0-alpha04'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0-alpha04' androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0-alpha04'

@ -0,0 +1 @@
Subproject commit 389cc9256395bbe3da587cd2ec7ffc5bf8439487

View File

@ -1 +1,5 @@
include ':app' include ':app'
include ':setup-wizard-lib'
project(':setup-wizard-lib').projectDir = new File('./libs/SetupWizardLibrary/library')
project(':setup-wizard-lib').buildFileName = 'standalone.gradle'