Blame view

app/build.gradle 1.21 KB
b2aec417b   kingzh   initialize
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
  apply plugin: 'com.android.application'
  
  
  repositories {
      maven {
          url "http://117.50.8.198:8081/nexus/content/repositories/sdk"
      }
      jcenter()
      google()
  }
  
  android {
      compileSdkVersion 28
      buildToolsVersion "29.0.3"
  
      defaultConfig {
          applicationId "gro.udc.mig"
          minSdkVersion 16
          targetSdkVersion 28
          versionCode 37
          versionName "1.1"
  
          testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
      }
  
      buildTypes {
          release {
              minifyEnabled false
              proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
          }
      }
      compileOptions {
          sourceCompatibility = 1.8
          targetCompatibility = 1.8
      }
  
  }
  
  dependencies {
      implementation fileTree(dir: 'libs', include: ['*.jar'])
  
      implementation 'androidx.appcompat:appcompat:1.1.0'
      implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
      testImplementation 'junit:junit:4.12'
      androidTestImplementation 'androidx.test.ext:junit:1.1.1'
      androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  
  //    implementation project(':sdk')
      implementation 'com.gt.union.sdk:GameSDK:6.0.4'
  }