Commit e66cc2da4565f1d9390de42a80609fb69ce98640

Authored by YangShuai
2 parents 0de61b3c 4c6c7c72
.idea/gradle.xml
... ... @@ -4,7 +4,7 @@
4 4 <component name="GradleSettings">
5 5 <option name="linkedExternalProjectsSettings">
6 6 <GradleProjectSettings>
7   - <option name="delegatedBuild" value="true" />
  7 + <option name="delegatedBuild" value="false" />
8 8 <option name="testRunner" value="PLATFORM" />
9 9 <option name="distributionType" value="DEFAULT_WRAPPED" />
10 10 <option name="externalProjectPath" value="$PROJECT_DIR$" />
... ... @@ -24,6 +24,7 @@
24 24 <option value="$PROJECT_DIR$/core/app_qr" />
25 25 <option value="$PROJECT_DIR$/core/base" />
26 26 <option value="$PROJECT_DIR$/core/database" />
  27 + <option value="$PROJECT_DIR$/core/dentity_verfication" />
27 28 <option value="$PROJECT_DIR$/core/imageload" />
28 29 <option value="$PROJECT_DIR$/core/network" />
29 30 <option value="$PROJECT_DIR$/library_baidumap" />
... ...
core/dentity_verfication/.gitignore 0 → 100644
  1 +/build
... ...
core/dentity_verfication/build.gradle 0 → 100644
  1 +apply plugin: 'com.android.library'
  2 +
  3 +android {
  4 +
  5 +}
  6 +
  7 +dependencies {
  8 + implementation fileTree(dir: 'libs', include: ['*.jar'])
  9 +
  10 + implementation 'androidx.appcompat:appcompat:1.0.2'
  11 + testImplementation 'junit:junit:4.12'
  12 + androidTestImplementation 'androidx.test.ext:junit:1.1.1'
  13 + androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  14 +}
... ...
core/dentity_verfication/consumer-rules.pro 0 → 100644
core/dentity_verfication/proguard-rules.pro 0 → 100644
  1 +# Add project specific ProGuard rules here.
  2 +# You can control the set of applied configuration files using the
  3 +# proguardFiles setting in build.gradle.
  4 +#
  5 +# For more details, see
  6 +# http://developer.android.com/guide/developing/tools/proguard.html
  7 +
  8 +# If your project uses WebView with JS, uncomment the following
  9 +# and specify the fully qualified class name to the JavaScript interface
  10 +# class:
  11 +#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
  12 +# public *;
  13 +#}
  14 +
  15 +# Uncomment this to preserve the line number information for
  16 +# debugging stack traces.
  17 +#-keepattributes SourceFile,LineNumberTable
  18 +
  19 +# If you keep the line number information, uncomment this to
  20 +# hide the original source file name.
  21 +#-renamesourcefileattribute SourceFile
... ...
core/dentity_verfication/src/main/AndroidManifest.xml 0 → 100644
  1 +<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2 + package="com.cnlive.core.people_verfication" />
... ...
settings.gradle
1 1 include ':app:strike'
2 2 //基础库
3   -include ':core:base',':core:network',':core:imageload' ,':core:app_qr',':core:database'
  3 +include ':core:base',':core:network',':core:imageload' ,':core:app_qr',':core:database',':core:dentity_verfication'
4 4 include ':cloud:user',':cloud:pay',':cloud:third_tool',':cloud:video',':cloud:app_pay',':cloud:wjj_lib'
5 5 include ':module:xiaojiasoundbox',':module:pedometer',':module:shanghaishop',':module:shopcity'
6 6 include ':library_baidumap'
... ...