apply plugin: 'com.android.application' android { packagingOptions { exclude 'META-INF/DEPENDENCIES' exclude 'META-INF/NOTICE' exclude 'META-INF/LICENSE' exclude 'META-INF/LICENSE.txt' exclude 'META-INF/NOTICE.txt' } signingConfigs { defaultSignature { keyAlias 'key0' keyPassword 'haotian' storeFile file('haotian.jks') storePassword 'haotian' } } lintOptions { abortOnError false } dataBinding { enabled = true } compileSdkVersion 28 buildToolsVersion '28.0.3' aaptOptions.cruncherEnabled = false aaptOptions.useNewCruncher = false defaultConfig { // multiDexEnabled true javaCompileOptions { annotationProcessorOptions { includeCompileClasspath = true } } // multiDexEnabled true applicationId "com.sl.HouseProperty" minSdkVersion 21 targetSdkVersion 28 // multiDexEnabled true versionCode 1 versionName "1.1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" ndk { //选择要添加的对应cpu类型的.so库。 abiFilters 'armeabi-v7a' } manifestPlaceholders = [ JPUSH_PKGNAME : applicationId, JPUSH_APPKEY : "4b6e03f9cc9466efbc0b2528", //JPush 上注册的包名对应的 Appkey. JPUSH_CHANNEL : "developer-default", //暂时填写默认值即可. ] } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' // signingConfig signingConfigs.defaultSignature } debug { signingConfig signingConfigs.defaultSignature } } repositories { flatDir { dirs 'libs' } } sourceSets { main { assets.srcDirs = ['src/main/assets', 'src/main/assets/'] jniLibs.srcDirs = ['libs'] } } dependencies { implementation 'com.android.support:multidex:1.0.1' implementation fileTree(dir: 'libs', include: ['*.jar']) androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) testImplementation 'junit:junit:4.12' implementation 'com.zhy:percent-support-extends:1.0.1' implementation 'com.arialyy.aria:Aria:3.1.1' implementation 'com.jcodecraeer:xrecyclerview:1.3.2' implementation 'com.youth.banner:banner:1.4.10' // implementation 'com.github.bumptech.glide:glide:3.7.0' implementation 'skin.support:skin-support:1.2.2' implementation 'skin.support:skin-support-design:1.2.1' implementation 'com.squareup.retrofit2:retrofit:2.1.0' implementation 'com.google.code.gson:gson:2.6.2' implementation 'io.reactivex:rxjava:1.1.0' implementation 'io.reactivex:rxandroid:1.1.0' implementation 'com.squareup.retrofit2:converter-gson:2.1.0' implementation 'com.squareup.retrofit2:adapter-rxjava:2.1.0' implementation 'com.trello:rxlifecycle:+' implementation 'com.trello:rxlifecycle-components:+' implementation 'com.squareup.picasso:picasso:2.5.2' //图片加载框架 implementation 'com.android.databinding:library:1.1' implementation 'com.android.databinding:baseLibrary:1.1' implementation 'com.android.databinding:adapters:1.1' implementation 'top.zibin:Luban:1.1.8' implementation 'com.hjq:xxpermissions:5.5' implementation 'com.jzj.view:ObservableScrollView:0.0.2' implementation 'com.dalong:refreshlayout:1.0.1' implementation 'com.nineoldandroids:library:2.4.0' implementation 'fm.jiecao:jiecaovideoplayer:4.6.3' //noinspection GradleCompatible implementation 'com.android.support:appcompat-v7:28.0.0' implementation 'com.nhaarman.listviewanimations:lib-core:3.1.0@aar' implementation 'com.nhaarman.listviewanimations:lib-manipulation:3.1.0@aar' implementation 'com.nhaarman.listviewanimations:lib-core-slh:3.1.0@aar' implementation 'com.truizlop.sectionedrecyclerview:library:1.0.0' implementation 'tech.wangjie:qrcodetools:1.0.0' implementation 'com.android.support:recyclerview-v7:28.0.0' implementation 'com.squareup.okhttp3:logging-interceptor:3.4.1' implementation 'com.google.zxing:core:3.3.0' // implementation(name: 'autil-release', ext: 'aar') implementation(name: 'cutil-release', ext: 'aar') // implementation(name: 'viewpicker-release', ext: 'aar') implementation(name: 'selectpicker-release', ext: 'aar') implementation 'com.github.rey5137:material:1.2.5' implementation 'com.github.bumptech.glide:glide:4.5.0' implementation 'com.github.chrisbanes:PhotoView:2.0.0' implementation 'com.android.support:design:28.0.0' implementation 'net.dankito.richtexteditor:richtexteditor-android:2.0.8' implementation(name: 'alipaySdk-15.5.9', ext: 'aar') implementation files('libs/pldroid-player-2.1.9.jar') implementation project(':ninegridview') implementation 'com.lxj:xpopup:1.8.10' // 添加下面这句即可 implementation 'com.android.support:support-v4:28.0.0' implementation 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0' //1.0.5及以前版本的老用户升级需谨慎,API改动过大 // 基础依赖包,必须要依赖 implementation 'com.gyf.immersionbar:immersionbar:3.0.0' implementation 'liji.library.dev:citypickerview:5.2.2' implementation 'com.zhihu.android:matisse:0.5.2-beta2' implementation 'com.tencent.bugly:crashreport:latest.release' //其中latest.release指代最新Bugly SDK版本号,也可以指定明确的版本号,例如2.2.0 implementation 'com.tencent.mm.opensdk:wechat-sdk-android-without-mta:+' //引入ormlite implementation 'com.j256.ormlite:ormlite-core:5.1' implementation 'com.j256.ormlite:ormlite-android:5.1' implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.30' implementation 'com.lzy.net:okgo:3.0.4' implementation 'cn.jiguang.sdk:jpush:3.6.6' implementation 'cn.jiguang.sdk:jcore:2.3.8' } }