| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- apply plugin: 'com.android.application'
- apply plugin: 'com.getkeepsafe.dexcount'
- android {
- signingConfigs {
- config {
- storeFile file('C:/CompanyProject/applicationsignname[20150409]')
- storePassword '13237658359'
- keyAlias 'jie-20150409'
- keyPassword '13237658359'
- }
- }
- compileSdkVersion 22
- buildToolsVersion "22.0.1"
- defaultConfig {
- applicationId "com.xzjmyk.pm.activity"
- minSdkVersion 8
- targetSdkVersion 22
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_7
- targetCompatibility JavaVersion.VERSION_1_7
- }
- multiDexEnabled true
- signingConfig signingConfigs.config
- ndk {
- // 设置支持的SO库架构
- abiFilters 'armeabi' //, 'x86', 'armeabi-v7a', 'x86_64', 'arm64-v8a'
- }
- }
- packagingOptions {
- exclude 'META-INF/LICENSE.txt'
- exclude 'META-INF/NOTICE.txt'
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
- }
- 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'
- }
|