Blame view

tableLayout/build.gradle 408 Bytes
27983dbe   孙向锦   project init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  apply plugin: 'com.android.library'
  android {
      compileSdkVersion 25
      buildToolsVersion '26.0.2'
  
      defaultConfig {
          minSdkVersion 3
          targetSdkVersion 25
          versionCode 1
          versionName "1.0"
      }
      buildTypes {
          release {
              minifyEnabled false
              proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
          }
      }
  }