Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

android / dayu

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • dayu
  • IDCardLib
  • build.gradle
Find file
Normal viewHistoryPermalink
build.gradle 1.07 KB
Newer Older
罗翻's avatar
增加人脸识别
5b0d1c4f
 
罗翻 committed 7 years ago
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
apply plugin: 'com.android.library'

android {
    compileSdkVersion compile_sdk_version
    buildToolsVersion build_tools_version

    defaultConfig {
        minSdkVersion min_sdk_version
        targetSdkVersion target_sdk_version
        versionCode version_code
        versionName verson_name
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

    }
    buildTypes {
        release {
            minifyEnabled isReleaseMinify
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    sourceSets{
        main{
            jniLibs.srcDir(['libs'])
        }
    }
}

dependencies {
罗翻's avatar
增加接单语音播报,studio升级为3.1.0
30014362
 
罗翻 committed 6 years ago
30 31
    api fileTree(include: ['*.jar'], dir: 'libs')
    androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
罗翻's avatar
增加人脸识别
5b0d1c4f
 
罗翻 committed 7 years ago
32 33
        exclude group: 'com.android.support', module: 'support-annotations'
    })
罗翻's avatar
增加接单语音播报,studio升级为3.1.0
30014362
 
罗翻 committed 6 years ago
34 35
    api 'com.android.support:appcompat-v7:27.1.1'
    testImplementation 'junit:junit:4.12'
mReturn's avatar
升级人脸识别sdk
c68a49d0
 
mReturn committed 5 years ago
36 37
    api files('libs/licensemanager-v1.3.jar')
    api files('libs/livenessdetection-proguard-2.4.7.jar')
罗翻's avatar
增加人脸识别
5b0d1c4f
 
罗翻 committed 7 years ago
38
}