Blame view

build.gradle 5.46 KB
96b488c3   杜方   畅游通核销app: 1.提交项目配置文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  //apply plugin: 'android'
  apply plugin: 'com.android.application'
  buildscript {
      repositories {
          mavenCentral()
          maven {
              url 'https://maven.aliyun.com/repository/google/'
  //        url 'https://maven.google.com/'
  //        name 'Google'
          }
          maven {
              url 'https://maven.aliyun.com/repository/jcenter/'
          }
  //        maven {
  //            url 'https://maven.google.com/'
  //            name 'Google'
  //        }
      }
      dependencies {
          classpath 'com.android.tools.build:gradle:3.4.0'
      }
  }
  
  dependencies {
      implementation files('libs/android-support-v4.jar')
      implementation files('libs/bcprov-jdk16-1.45.jar')
      implementation files('libs/dom4j-1.6.1.jar')
      implementation files('libs/fastjson-1.2.3.jar')
      implementation files('libs/sunjce_provider.jar')
      implementation files('libs/zbar.jar')
      implementation files('libs/zxing.jar')
      implementation files('libs/gson-2.6.2.jar')
90601e4f   黄灿宏   标准版本 1.扩展设备10 增...
33
34
35
36
      implementation files('libs\\rskapi.jar')
      implementation files('libs\\zkandroidcore.jar')
      implementation files('libs\\zkandroididcardreader.jar')
      implementation files('libs\\iodev2.jar')
96b488c3   杜方   畅游通核销app: 1.提交项目配置文件
37
38
39
      compileOnly files('external_libs/classes_2.1.11_20160907.jar')
      compileOnly files('external_libs/bw_odm_20160526.jar')
      implementation files('libs/bw_pos_sdk2.0.18.jar')
90601e4f   黄灿宏   标准版本 1.扩展设备10 增...
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
  //    implementation('com.android.support:support-v4:21.0.0')
  //    implementation('com.android.support:appcompat-v7:21.0.0'){ // You should exclude one of them not both of them
  //        exclude module: "support-v4"
  //        exclude group: "com.android.support", module: "support-v4"
  //        exclude group: "com.android.support", module: "slidingpanelayout"
  //        exclude group: "com.android.support", module: "cursoradapter"
  //        exclude group: "com.android.support", module: "support-compat"
  //        exclude group: "com.android.support", module: "cursoradapter"
  //        exclude group: "com.android.support", module: "drawerlayout"
  //        exclude group: "com.android.support", module: "viewpager"
  //        exclude group: "com.android.support", module: "collections"
  //        exclude group: "com.android.support", module: "loader"
  //        exclude group: "com.android.support", module: "localbroadcastmanager"
  //        exclude group: "com.android.support", module: "support-fragment"
  ////        exclude group: "com.android.support", module: "support-core-ui"
  //        exclude group: "com.android.support", module: "support-core-utils"
  //    }
  //    implementation 'com.android.support:support-vector-drawable:26.1.0'
  //    implementation 'com.android.support:design:26.1.0'
96b488c3   杜方   畅游通核销app: 1.提交项目配置文件
59
60
61
  }
  
  android {
90601e4f   黄灿宏   标准版本 1.扩展设备10 增...
62
      compileSdkVersion 21
96b488c3   杜方   畅游通核销app: 1.提交项目配置文件
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
  
      buildTypes {
          release {
              //在这里添加:
              lintOptions {
                  checkReleaseBuilds false
                  abortOnError false
              }
              minifyEnabled false
              shrinkResources false//去掉不用资源
              proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
          }
      }
  
      sourceSets {
          main {
              manifest.srcFile 'AndroidManifest.xml'
              java.srcDirs = ['src']
              resources.srcDirs = ['src']
              aidl.srcDirs = ['src']
              renderscript.srcDirs = ['src']
              res.srcDirs = ['res']
              assets.srcDirs = ['assets']
              jniLibs.srcDirs = ['libs']
          }
  
          // Move the tests to tests/java, tests/res, etc...
          // instrumentTest.setRoot('tests')
  
          // Move the build types to build-types/<type>
          // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
          // This moves them out of them default location under src/<type>/... which would
          // conflict with src/ being used by the main source set.
          // Adding new build types or product flavors should be accompanied
          // by a similar customization.
          debug.setRoot('build-types/debug')
          release.setRoot('build-types/release')
      }
      defaultConfig {
90601e4f   黄灿宏   标准版本 1.扩展设备10 增...
102
          minSdkVersion 14
96b488c3   杜方   畅游通核销app: 1.提交项目配置文件
103
          targetSdkVersion 21
90601e4f   黄灿宏   标准版本 1.扩展设备10 增...
104
          vectorDrawables.useSupportLibrary =true
96b488c3   杜方   畅游通核销app: 1.提交项目配置文件
105
  
90601e4f   黄灿宏   标准版本 1.扩展设备10 增...
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
          ndk {
              abiFilters "armeabi-v7a"//可以适当补填其他
  //            abiFilters "armeabi"//可以适当补填其他
          }
      }
  //    configurations {
  //        all { // You should exclude one of them not both of them
  //            exclude group: "com.android.support", module: "customview"
  //            exclude group: "com.android.support", module: "slidingpanelayout"
  //            exclude group: "com.android.support", module: "cursoradapter"
  //            exclude group: "com.android.support", module: "support-compat"
  //            exclude group: "com.android.support", module: "cursoradapter"
  //            exclude group: "com.android.support", module: "drawerlayout"
  //            exclude group: "com.android.support", module: "viewpager"
  //            exclude group: "com.android.support", module: "collections"
  //            exclude group: "com.android.support", module: "loader"
  //            exclude group: "com.android.support", module: "localbroadcastmanager"
  //            exclude group: "com.android.support", module: "support-fragment"
  //            exclude group: "com.android.support", module: "support-core-ui"
  //        }
  //    }
96b488c3   杜方   畅游通核销app: 1.提交项目配置文件
127
128
129
130
131
132
133
134
135
136
137
138
139
  
  }
  
  repositories {
      maven {
          url 'https://maven.aliyun.com/repository/google/'
  //        url 'https://maven.google.com/'
  //        name 'Google'
      }
      maven {
          url 'https://maven.aliyun.com/repository/jcenter/'
      }
  }