| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- apply plugin: 'com.android.application'
- apply plugin: 'com.getkeepsafe.dexcount'
- android {
- lintOptions {
- abortOnError false
- }
- dexOptions {
- incremental true
- javaMaxHeapSize "4g"
- }
- signingConfigs {
- config {
- storeFile file('E:/CompanyProject/applicationsignname[20150409]')
- storePassword '13237658359'
- keyAlias 'jie-20150409'
- keyPassword '13237658359'
- }
- }
- compileSdkVersion 22
- buildToolsVersion "22.0.1"
- defaultConfig {
- applicationId "com.xzjmyk.pm.activity"
- minSdkVersion 9
- targetSdkVersion 22
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_7
- targetCompatibility JavaVersion.VERSION_1_7
- }
- multiDexEnabled true
- signingConfig signingConfigs.config
- }
- packagingOptions {
- exclude 'META-INF/LICENSE.txt'
- exclude 'META-INF/NOTICE.txt'
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
- signingConfig signingConfigs.config
- }
- debug {
- signingConfig signingConfigs.config
- }
- }
- productFlavors {
- }
- }
- buildscript {
- repositories {
- mavenCentral() // or jcenter()
- }
- dependencies {
- classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.5.5'
- }
- }
- dexcount {
- format = "json"
- includeClasses = false
- includeFieldCount = true
- includeTotalMethodCount = false
- orderByMethodCount = false
- verbose = false
- maxTreeDepth = Integer.MAX_VALUE
- teamCityIntegration = false
- enableForInstantRun = false
- }
- dependencies {
- compile project(':pullToRefershLibraryMy')
- compile project(':materialdialogs')
- compile project(':MPAndroidChart')
- compile project(':libedittextformlibrary')
- compile project(':libfloatingactionbutton')
- compile project(':libbdupdatesdk')
- compile files('libs/android-async-http-1.4.5.jar')
- compile files('libs/asmack.jar')
- compile files('libs/BaiduLBS_Android.jar')
- compile files('libs/cyberplayer-sdk.jar')
- compile files('libs/fastjson-1.1.41.jar')
- compile files('libs/httpmime-4.2.jar')
- compile files('libs/nineoldandroids.jar')
- compile files('libs/org.xbill.dns_2.1.6.jar')
- compile files('libs/ormlite-android-4.48.jar')
- compile files('libs/ormlite-core-4.48.jar')
- compile files('libs/pinyin4j-2.5.0.jar')
- compile files('libs/universal-image-loader-1.9.0.jar')
- compile files('libs/volley.jar')
- compile files('libs/pushservice-4.5.5.77.jar')
- compile files('libs/xutils.jar')
- compile files('libs/flexjson-2.1.jar')
- compile 'com.android.support:support-v4:22.2.0'
- compile 'com.android.support:appcompat-v7:22.2.0'
- compile 'com.android.support:cardview-v7:22.2.0'
- compile 'com.android.support:design:22.2.0'
- compile 'com.commit451:PhotoView:1.2.5'
- compile 'me.gujun.android.taggroup:library:1.4@aar'
- compile 'com.umeng.analytics:analytics:latest.integration'
- compile 'com.android.support:multidex:1.0.1'
- compile project(':library-swipemenu_lv')
- compile project(':library-viewpager-indicator')
- compile project(':lib-zxing')
- compile files('libs/SocialSDK_WeiXin_2.jar')
- compile files('libs/SocialSDK_umengwx.jar')
- compile files('libs/SocialSDK_QQZone_3.jar')
- compile files('libs/SocialSDK_umengqq.jar')
- compile files('libs/umeng_social_apiv6.0.0.jar')
- compile files('libs/umeng_social_netv6.0.0.jar')
- compile files('libs/umeng_social_viewv6.0.0.jar')
- compile files('libs/SocialSDK_umengsina.jar')
- compile files('libs/SocialSDK_Sina.jar')
- compile files('libs/weiboSDKCore_3.1.4.jar')
- compile 'cat.ereza:customactivityoncrash:1.5.0'
- compile('com.facebook.stetho:stetho:1.4.1') {
- force = true
- }
- releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'
- debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5'
- androidTestCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'
- }
|