115 lines
3.7 KiB
Groovy
115 lines
3.7 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
|
|
android {
|
|
signingConfigs {
|
|
debug {
|
|
keyAlias 'android.keystore'
|
|
keyPassword 'ifish7'
|
|
storeFile file('D:/Android/iFish7/ifish7.keystore')
|
|
storePassword 'ifish7'
|
|
}
|
|
}
|
|
useLibrary 'org.apache.http.legacy'
|
|
lintOptions {
|
|
checkReleaseBuilds false
|
|
abortOnError false
|
|
}
|
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
|
buildToolsVersion rootProject.ext.buildToolsVersion
|
|
defaultConfig {
|
|
minSdkVersion rootProject.ext.minSdkVersion
|
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
|
applicationId "com.ifish.activity"
|
|
versionCode 20
|
|
versionName "4.6.1"
|
|
multiDexEnabled true
|
|
}
|
|
buildTypes {
|
|
debug {
|
|
minifyEnabled false
|
|
signingConfig signingConfigs.debug
|
|
}
|
|
release {
|
|
minifyEnabled false
|
|
}
|
|
}
|
|
dexOptions {
|
|
incremental true
|
|
javaMaxHeapSize '4g'
|
|
}
|
|
}
|
|
repositories{
|
|
flatDir{
|
|
dirs 'libs' //aar的目录地址
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':p2PCore')
|
|
//技威平台
|
|
compile project(':umeng_sharesdk_library')
|
|
//友盟分享
|
|
compile 'com.google.code.gson:gson:2.4'
|
|
compile files('libs/bugly_1.2.6_release.jar')
|
|
//bugly
|
|
compile files('libs/commons-io-1.4.jar')
|
|
compile files('libs/EMTMF_0101_1608016.jar')
|
|
compile files('libs/locSDK_6.13.jar')
|
|
compile files('libs/mina-core-2.0.7.jar')
|
|
compile files('libs/TalkingDataAnalytics_V2.1.37.jar')
|
|
compile files('libs/umeng_social_sdk.jar')
|
|
compile 'de.greenrobot:eventbus:2.4.0'
|
|
compile 'com.squareup.picasso:picasso:2.5.2'
|
|
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
|
|
compile 'com.jiechic.library:xUtils:2.6.14'
|
|
compile 'com.google.zxing:core:3.3.0'
|
|
compile project(':uikit')
|
|
//云信聊天
|
|
compile 'com.android.support:multidex:1.0.1'
|
|
//65535
|
|
compile files('libs/cosinesdk.jar')
|
|
compile files('libs/AMap_Services_V2.3.1.jar')
|
|
//定位
|
|
compile files('libs/Android_2DMap_V2.4.0.jar')
|
|
//地图
|
|
compile files('libs/MobCommons-2016.1012.1447.jar')
|
|
compile files('libs/MobTools-2016.1012.1447.jar')
|
|
compile name: 'SMSSDK-2.1.2', ext: 'aar'
|
|
//MOB短信平台
|
|
compile 'com.jude:rollviewpager:1.4.5'
|
|
//自动滚动ViewPager
|
|
compile project(':BageView')
|
|
//拖拽小红点控件
|
|
compile project(':umeng_community_library')
|
|
//友盟微社区
|
|
compile 'jp.wasabeef:picasso-transformations:2.1.0'
|
|
//Picasso 显示圆形图片
|
|
compile 'com.android.support:design:23+'
|
|
compile 'com.github.bumptech.glide:glide:3.7.0'
|
|
//Glide
|
|
compile 'cn.bingoogolapple:bga-refreshlayout:1.1.7@aar'
|
|
//下拉刷新
|
|
/**阿里百川*/
|
|
//安全基础
|
|
compile name: 'securityguardaar3-5.1.81', ext: 'aar'
|
|
// compile 'com.taobao.android:securityguardaar3:5.1.81@aar'
|
|
//UT
|
|
compile 'com.taobao.android:utdid4all:1.1.5.3_proguard@jar'
|
|
compile 'com.alibaba.mtl:app-monitor-sdk:2.5.1.3_for_bc_proguard@jar'
|
|
//登陆
|
|
compile 'com.ali.auth.sdk:alibabauth_core:1.1.4@jar'
|
|
compile 'com.ali.auth.sdk:alibabauth_ui:1.1.4@aar'
|
|
compile 'com.ali.auth.sdk:alibabauth_ext:1.1.4@jar'
|
|
//电商SDK
|
|
compile 'com.alibaba.sdk.android:alibc_trade_sdk:3.1.1.11@aar'
|
|
//Mtop网关
|
|
compile 'com.taobao.android:mtopsdk_allinone_open:1.2.2.4@jar'
|
|
//applink
|
|
compile 'com.taobao.android:alibc_applink:2.0.0.9@jar'
|
|
//支付宝
|
|
compile 'com.alibaba.alipay:alipaySingle:20160825@jar'
|
|
/**阿里百川*/
|
|
compile project(':JCVideo_Library')
|
|
}
|
|
//apply plugin: 'com.getkeepsafe.dexcount' |