添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
compile project(":facesdk") compile 'com.android.support:appcompat-v7:25.1.0' compile 'com.squareup.okhttp3:okhttp:3.6.0' compile 'com.android.support:recyclerview-v7:25.1.0' compile 'cat.ereza:customactivityoncrash:1.5.0' compile 'com.android.support.constraint:constraint-layout:1.0.2' compile 'com.android.support:design:25.3.1'
dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    api project(':facesdk')
    implementation 'com.android.support:appcompat-v7:25.1.0'
    implementation 'com.squareup.okhttp3:okhttp:3.6.0'
    implementation 'com.android.support:recyclerview-v7:25.1.0'
    implementation 'cat.ereza:customactivityoncrash:1.5.0'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    implementation 'com.android.support:design:25.3.1'

facesdk的build.gradle中把

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile files('libs/facesdk.jar')
    compile files('libs/baidu_license.jar')
    compile 'com.android.support:appcompat-v7:25.1.0'
dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    api files('libs/facesdk.jar')
    api files('libs/baidu_license.jar')
    implementation 'com.android.support:appcompat-v7:25.1.0'