You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.4 KiB
83 lines
2.4 KiB
apply plugin: 'com.android.application'
|
|
apply plugin: 'org.greenrobot.greendao'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
buildToolsVersion '28.0.3'
|
|
defaultConfig {
|
|
applicationId "com.monke.monkeybook"
|
|
minSdkVersion 17
|
|
targetSdkVersion 26
|
|
versionCode 16
|
|
versionName "1.3.6"
|
|
manifestPlaceholders = [UMENG_CHANNEL_VALUE: "pugongying"]
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
buildTypes {
|
|
release {
|
|
buildConfigField "boolean", "IS_RELEASE", "true"
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
debug {
|
|
buildConfigField "boolean", "IS_RELEASE", "false"
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
// signingConfig signingConfigs.config
|
|
}
|
|
}
|
|
}
|
|
|
|
repositories{
|
|
flatDir{
|
|
dirs 'libs'
|
|
}
|
|
}
|
|
|
|
|
|
dependencies {
|
|
api fileTree(include: ['*.jar'], dir: 'libs')
|
|
testImplementation 'junit:junit:4.12'
|
|
api 'com.android.support:appcompat-v7:28.0.0'
|
|
api 'com.android.support:design:28.0.0'
|
|
api 'com.android.support:cardview-v7:28.0.0'
|
|
api 'com.android.support:support-compat:28.0.0'
|
|
api project(':basemvplib')
|
|
//GreenDao
|
|
api 'org.greenrobot:greendao:3.0.1'
|
|
api 'org.greenrobot:greendao-generator:3.0.0'
|
|
//JSOUP
|
|
api 'org.jsoup:jsoup:1.10.2'
|
|
//沉浸式状态栏
|
|
api 'com.zhangmonke:ImmerseLayout:1.1.1'
|
|
//ProgressBar
|
|
api 'com.zhangmonke:MProgressBar:1.0.1'
|
|
//Glide
|
|
api 'com.github.bumptech.glide:glide:3.7.0'
|
|
//AutofitTextView
|
|
api 'me.grantland:autofittextview:0.2.1'
|
|
//删除粒子效果
|
|
api 'tyrantgit:explosionfield:1.0.1'
|
|
//View简易动画
|
|
api 'com.daimajia.easing:library:2.0@aar'
|
|
api 'com.daimajia.androidanimations:library:2.2@aar'
|
|
//CircleImageView
|
|
api 'de.hdodenhof:circleimageview:2.1.0'
|
|
//SwitchButton
|
|
api 'com.kyleduo.switchbutton:library:1.4.4'
|
|
api 'com.victor:lib:1.0.4'
|
|
api files('libs/commons-codec-1.10-sources.jar')
|
|
api files('libs/juniversalchardet-1.0.3.jar')
|
|
api files('libs/umeng-analytics-v6.1.1.jar')
|
|
api files('libs/utdid4all-1.0.4.jar')
|
|
}
|
|
|
|
greendao {
|
|
schemaVersion 1
|
|
daoPackage 'com.monke.monkeybook.dao'
|
|
targetGenDir 'src/main/java'
|
|
}
|