123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 29
- buildToolsVersion "29.0.2"
- defaultConfig {
- applicationId "com.cnooc.construction.security"
- minSdkVersion 21
- //noinspection ExpiredTargetSdkVersion
- targetSdkVersion 29
- versionCode 220
- versionName "2.2.0"
- ndk {
- abiFilters "armeabi", 'armeabi-v7a', "arm64-v8a", 'x86', 'x86_64'
- }
- javaCompileOptions {
- annotationProcessorOptions {
- arguments = [AROUTER_MODULE_NAME: project.getName()]
- }
- }
- }
- buildTypes {
- release {
- minifyEnabled true
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- shrinkResources true
- }
- }
- lintOptions {
- abortOnError false
- }
- aaptOptions {
- noCompress "tflite"
- noCompress "lite"
- }
- sourceSets {
- main{
- jniLibs.srcDirs = ['src/main/jniLibs']
- }
- }
- }
- dependencies {
- implementation project(':smartcropperlib')
- implementation project(path: ':LRecyclerView')
- implementation fileTree(include: ['*.jar'], dir: 'libs')
- // For developers using AndroidX in their applications
- //implementation 'pub.devrel:easypermissions:3.0.0'
- // For developers using the Android Support Library
- implementation 'pub.devrel:easypermissions:2.0.1'
- // implementation project(path: ':opencv')
- // api 'com.github.pqpo:SmartCropper:v2.1.1'
- implementation 'androidx.appcompat:appcompat:1.0.2'
- implementation group: 'io.reactivex.rxjava2', name: 'rxjava', version: '2.2.14'
- implementation group: 'io.reactivex.rxjava2', name: 'rxandroid', version: '2.1.1'
- implementation group: 'com.orhanobut', name: 'logger', version: '2.2.0'
- implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.2.2'
- implementation group: 'com.squareup.retrofit2', name: 'retrofit', version: '2.6.2'
- implementation group: 'com.squareup.okhttp3', name: 'logging-interceptor', version: '4.2.2'
- implementation group: 'com.squareup.retrofit2', name: 'adapter-rxjava', version: '2.6.2'
- implementation group: 'com.squareup.retrofit2', name: 'converter-gson', version: '2.6.2'
- implementation group: 'com.facebook.stetho', name: 'stetho', version: '1.5.1'
- implementation group: 'com.facebook.stetho', name: 'stetho-okhttp3', version: '1.5.1'
- implementation group: 'com.github.bumptech.glide', name: 'glide', version: '4.10.0'
- implementation group: 'com.danikula', name: 'videocache', version: '2.7.0'
- implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
- implementation 'org.xutils:xutils:3.3.40'
- implementation 'com.github.donkingliang:ImageSelector:2.2.0'
- implementation 'com.android.volley:volley:1.2.1'
- implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
- implementation project(path: ':LRecyclerview_library')
- implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
- implementation 'androidx.cardview:cardview:1.0.0'
- implementation group: 'com.jakewharton', name: 'disklrucache', version: '2.0.2'
- implementation group: 'com.google.zxing', name: 'core', version: '3.4.0'
- implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
- implementation 'com.xiaoqi:pdftools:1.0.2'
- implementation 'com.github.zrunker:ZImageView:v1.0'
- implementation project(path: ':image_lib')
- implementation 'androidx.viewpager2:viewpager2:1.0.0'
- implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0'
- implementation 'com.google.android.flexbox:flexbox:3.0.0'
- implementation 'com.github.GitHubZJY:AndroidPdfHelper:v1.0.0'
- }
|