Commit 15f4397c011142eeaf78377ed5a343e2c405e67d

Authored by 韩亚云
1 parent e3d87fb5

新建认证module

.idea/gradle.xml
1 1 <?xml version="1.0" encoding="UTF-8"?>
2 2 <project version="4">
  3 + <component name="GradleMigrationSettings" migrationVersion="1" />
3 4 <component name="GradleSettings">
4 5 <option name="linkedExternalProjectsSettings">
5 6 <GradleProjectSettings>
  7 + <option name="delegatedBuild" value="false" />
  8 + <option name="testRunner" value="PLATFORM" />
6 9 <option name="distributionType" value="DEFAULT_WRAPPED" />
7 10 <option name="externalProjectPath" value="$PROJECT_DIR$" />
8 11 <option name="modules">
... ... @@ -20,6 +23,7 @@
20 23 <option value="$PROJECT_DIR$/core/app_qr" />
21 24 <option value="$PROJECT_DIR$/core/base" />
22 25 <option value="$PROJECT_DIR$/core/database" />
  26 + <option value="$PROJECT_DIR$/core/dentity_verfication" />
23 27 <option value="$PROJECT_DIR$/core/imageload" />
24 28 <option value="$PROJECT_DIR$/core/network" />
25 29 <option value="$PROJECT_DIR$/library_baidumap" />
... ... @@ -31,7 +35,6 @@
31 35 </set>
32 36 </option>
33 37 <option name="resolveModulePerSourceSet" value="false" />
34   - <option name="testRunner" value="PLATFORM" />
35 38 </GradleProjectSettings>
36 39 </option>
37 40 </component>
... ...
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
... ... @@ -5,3 +5,4 @@ include &#39;:cloud:user&#39;,&#39;:cloud:pay&#39;,&#39;:cloud:third_tool&#39;,&#39;:cloud:video&#39;,&#39;:cloud:ap
5 5 include ':module:xiaojiasoundbox',':module:pedometer',':module:shanghaishop',':module:shopcity'
6 6 include ':library_baidumap'
7 7 rootProject.name='ModuleStrike'
  8 +include ':core:dentity_verfication'
... ...