Files
HouseProperty/app/build.gradle

163 lines
6.4 KiB
Groovy
Raw Normal View History

2020-08-03 09:11:54 +08:00
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'
}
2020-12-25 15:15:11 +08:00
signingConfigs {
defaultSignature {
keyAlias 'key0'
keyPassword 'haotian'
storeFile file('haotian.jks')
storePassword 'haotian'
}
}
2020-08-03 09:11:54 +08:00
lintOptions {
abortOnError false
}
dataBinding {
enabled = true
}
2020-08-14 17:07:43 +08:00
compileSdkVersion 28
buildToolsVersion '28.0.3'
2020-08-03 09:11:54 +08:00
aaptOptions.cruncherEnabled = false
aaptOptions.useNewCruncher = false
defaultConfig {
// multiDexEnabled true
javaCompileOptions { annotationProcessorOptions { includeCompileClasspath = true } }
// multiDexEnabled true
applicationId "com.sl.HouseProperty"
minSdkVersion 21
2020-08-14 17:07:43 +08:00
targetSdkVersion 28
2020-08-03 09:11:54 +08:00
// multiDexEnabled true
versionCode 1
versionName "1.1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
ndk {
//选择要添加的对应cpu类型的.so库。
2020-09-07 10:05:06 +08:00
abiFilters 'armeabi-v7a'
2020-08-03 09:11:54 +08:00
}
2021-04-16 16:36:35 +08:00
manifestPlaceholders = [
JPUSH_PKGNAME : applicationId,
2021-04-16 16:45:53 +08:00
JPUSH_APPKEY : "4b6e03f9cc9466efbc0b2528", //JPush 上注册的包名对应的 Appkey.
2021-04-16 16:36:35 +08:00
JPUSH_CHANNEL : "developer-default", //暂时填写默认值即可.
]
2020-08-03 09:11:54 +08:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
// signingConfig signingConfigs.defaultSignature
}
2020-12-25 15:15:11 +08:00
debug {
signingConfig signingConfigs.defaultSignature
}
2020-08-03 09:11:54 +08:00
}
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'
2021-01-28 14:59:30 +08:00
implementation 'top.zibin:Luban:1.1.8'
2021-01-20 13:51:59 +08:00
implementation 'com.hjq:xxpermissions:5.5'
2020-08-03 09:11:54 +08:00
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
2020-08-14 17:07:43 +08:00
implementation 'com.android.support:appcompat-v7:28.0.0'
2020-08-03 09:11:54 +08:00
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'
2020-08-14 17:07:43 +08:00
implementation 'com.android.support:recyclerview-v7:28.0.0'
2020-08-03 09:11:54 +08:00
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'
2020-08-14 17:07:43 +08:00
implementation 'com.android.support:design:28.0.0'
2020-08-03 09:11:54 +08:00
implementation 'net.dankito.richtexteditor:richtexteditor-android:2.0.8'
implementation(name: 'alipaySdk-15.5.9', ext: 'aar')
2020-08-11 14:48:10 +08:00
implementation files('libs/pldroid-player-2.1.9.jar')
implementation project(':ninegridview')
2020-08-14 17:07:43 +08:00
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'
2020-08-27 15:34:03 +08:00
implementation 'liji.library.dev:citypickerview:5.2.2'
2020-08-21 13:39:24 +08:00
2020-09-01 15:14:48 +08:00
implementation 'com.zhihu.android:matisse:0.5.2-beta2'
2020-09-07 10:05:06 +08:00
implementation 'com.tencent.bugly:crashreport:latest.release' //其中latest.release指代最新Bugly SDK版本号也可以指定明确的版本号例如2.2.0
2020-12-25 15:15:11 +08:00
implementation 'com.tencent.mm.opensdk:wechat-sdk-android-without-mta:+'
2021-03-10 23:48:19 +08:00
//引入ormlite
implementation 'com.j256.ormlite:ormlite-core:5.1'
implementation 'com.j256.ormlite:ormlite-android:5.1'
2021-03-15 10:44:58 +08:00
implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.30'
2021-03-10 23:48:19 +08:00
2021-03-24 23:32:14 +08:00
implementation 'com.lzy.net:okgo:3.0.4'
2021-04-16 16:36:35 +08:00
implementation 'cn.jiguang.sdk:jpush:3.6.6'
implementation 'cn.jiguang.sdk:jcore:2.3.8'
2020-08-03 09:11:54 +08:00
}
2020-08-11 14:48:10 +08:00
2020-08-03 09:11:54 +08:00
}