diff --git a/module_feedback/build.gradle b/module_feedback/build.gradle index 4b004b6092..fa134ecf38 100644 --- a/module_feedback/build.gradle +++ b/module_feedback/build.gradle @@ -76,7 +76,6 @@ android { } dependencies { - implementation fileTree(include: ['*.jar', '*.aar'], dir: 'libs') testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.3' androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' diff --git a/module_feedback/libs/quick_login_android_5.9.4.aar b/module_feedback/libs/quick_login_android_5.9.4.aar deleted file mode 100644 index 78a320eeba..0000000000 Binary files a/module_feedback/libs/quick_login_android_5.9.4.aar and /dev/null differ diff --git a/module_lib/build.gradle b/module_lib/build.gradle new file mode 100644 index 0000000000..84042c9450 --- /dev/null +++ b/module_lib/build.gradle @@ -0,0 +1,2 @@ +configurations.maybeCreate("default") +artifacts.add("default", file('quick_login_android_5.9.4.aar')) \ No newline at end of file diff --git a/app/libs/quick_login_android_5.9.4.aar b/module_lib/quick_login_android_5.9.4.aar old mode 100755 new mode 100644 similarity index 100% rename from app/libs/quick_login_android_5.9.4.aar rename to module_lib/quick_login_android_5.9.4.aar diff --git a/module_login/build.gradle b/module_login/build.gradle index ef2518fee4..0e06f28f5f 100644 --- a/module_login/build.gradle +++ b/module_login/build.gradle @@ -46,8 +46,6 @@ android { } dependencies { - compileOnly fileTree(include: ['*.jar', '*.aar'], dir: 'libs') - testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.3' androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' @@ -56,4 +54,5 @@ dependencies { implementation(project(path: ":module_common")) implementation(project(path: ":module_core_feature")) + api project(":module_lib") } \ No newline at end of file diff --git a/module_login/libs/quick_login_android_5.9.4.aar b/module_login/libs/quick_login_android_5.9.4.aar deleted file mode 100755 index 78a320eeba..0000000000 Binary files a/module_login/libs/quick_login_android_5.9.4.aar and /dev/null differ diff --git a/settings.gradle b/settings.gradle index 22a34bd79e..78098e3c23 100644 --- a/settings.gradle +++ b/settings.gradle @@ -11,3 +11,4 @@ include ':module_setting' include ':module_feedback' include ':ndownload' include ':module_core_feature' +include ':module_lib' \ No newline at end of file