apply plugin: 'com.android.application' apply plugin: 'com.jakewharton.butterknife' apply plugin: 'org.greenrobot.greendao' android { compileSdkVersion 28 aaptOptions.cruncherEnabled = false aaptOptions.useNewCruncher = false signingConfigs { release { keyAlias 'zdw' keyPassword '123456' storeFile file('/Users/tederen/Desktop/guangxi/GXXY/tede.keystore') storePassword '123456' } config { keyAlias 'zdw' keyPassword '123456' storeFile file('/Users/tederen/Desktop/guangxi/GXXY/tede.keystore') storePassword '123456' } } defaultConfig { applicationId "com.technology.tederen" minSdkVersion 19 targetSdkVersion 28 versionCode 9 versionName "2.0.9" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" multiDexEnabled true ndk { abiFilters "armeabi", "armeabi-v7a", "x86", "mips" } signingConfig signingConfigs.release javaCompileOptions { annotationProcessorOptions { includeCompileClasspath = true } } } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' aaptOptions.cruncherEnabled = false aaptOptions.useNewCruncher = false signingConfig signingConfigs.release } debug { signingConfig signingConfigs.release } } useLibrary 'org.apache.http.legacy' compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } packagingOptions { exclude 'META-INF/proguard/androidx-annotations.pro' } configurations.all { resolutionStrategy.eachDependency { DependencyResolveDetails details -> def requested = details.requested if (requested.group == 'com.android.support') { if (!requested.name.startsWith("multidex")) { details.useVersion '27.1.1' } } } } greendao { schemaVersion 2 daoPackage 'com.greendao.gen' targetGenDir 'src/main/java' } } dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') api 'com.android.support:appcompat-v7:28.0.0' implementation 'com.android.support:recyclerview-v7:28.0.0' implementation 'com.android.support.constraint:constraint-layout:1.1.3' implementation 'com.android.support:support-v4:28.0.0' implementation 'com.android.support:design:28.0.0' implementation files('libs/chardet.jar') testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' // butterknife implementation 'com.jakewharton:butterknife:9.0.0-rc1' annotationProcessor "com.jakewharton:butterknife-compiler:9.0.0-rc1" implementation 'net.qiujuer.genius:ui:2.1.1' implementation 'com.squareup.retrofit2:converter-gson:2.3.0' implementation 'com.lzy.net:okgo:3.0.4' implementation 'com.lzy.net:okrx2:2.0.2' implementation 'com.lzy.net:okserver:2.0.5' // 圆形图片、加载图片 implementation "de.hdodenhof:circleimageview:2.1.0" implementation "com.github.bumptech.glide:glide:3.7.0" // 图片选择框架 https://github.com/LuckSiege/PictureSelector implementation 'com.github.LuckSiege.PictureSelector:picture_library:v2.2.4' //和viewpager搭配的tab implementation 'com.github.hackware1993:MagicIndicator:1.5.0' // 选择器 https://github.com/addappcn/android-pickers implementation 'com.github.addappcn:android-pickers:1.0.3' // 设置圆角 https://www.jianshu.com/p/32d36d42b842 implementation 'com.facebook.fresco:fresco:0.12.0' api project(':lib-zxing') api project(':calendar') api project(':easeui') api project(':lfilepickerlibrary') implementation project(':hmspush') // 权限申请 implementation 'pub.devrel:easypermissions:0.2.0' // // 状态栏 // implementation 'com.gyf.immersionbar:immersionbar:3.0.0' // implementation 'com.gyf.immersionbar:immersionbar-components:3.0.0' // 侧滑删除 implementation 'com.github.mcxtzhang:SwipeDelMenuLayout:V1.3.0' //计算首字母 implementation 'com.belerweb:pinyin4j:2.5.1' //列表控件 implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.30' //下拉刷新控件 implementation 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0' implementation 'com.scwang.smartrefresh:SmartRefreshHeader:1.1.0' implementation 'com.hjq:toast:8.0' implementation 'com.youth.banner:banner:1.4.10' implementation 'org.simple:androideventbus:1.0.5.1' implementation 'com.android.support:multidex:1.0.1' implementation 'com.parse:parse-android:1.13.1' // 环信 implementation 'com.j256.ormlite:ormlite-android:5.0' //图标 implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0' implementation 'com.github.delight-im:Android-AdvancedWebView:v3.0.0' // implementation 'com.jaeger.statusbarutil:library:1.5.1' implementation 'com.google.android:flexbox:1.0.0' // 本地数据库 implementation 'org.greenrobot:greendao:3.2.2' implementation 'com.github.donkingliang:LabelsView:1.6.1'//标签 //图片查看 implementation 'com.github.iielse:ImageWatcher:1.1.5' implementation 'com.hz.android.fileselectorview:library:1.3' // implementation 'com.leon:lfilepickerlibrary:1.8.0' implementation 'com.tencent.tbs.tbssdk:sdk:43697' api 'com.tencent.mm.opensdk:wechat-sdk-android-without-mta:+' }