Blame view
GameSDKDemo/build.gradle
942 Bytes
d6bc71fcb
![]() |
1 |
apply plugin: 'com.android.application' |
43932caac
![]() |
2 3 |
repositories { flatDir { |
d6bc71fcb
![]() |
4 5 6 7 8 9 |
dirs 'libs' } } android { compileSdkVersion 22 |
43932caac
![]() |
10 |
buildToolsVersion "26.0.2" |
d6bc71fcb
![]() |
11 |
|
d6bc71fcb
![]() |
12 13 14 |
defaultConfig { minSdkVersion 9 targetSdkVersion 22 |
adab52895
![]() |
15 16 |
versionCode 5 versionName "1.3" |
7a5aadf06
![]() |
17 |
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" |
d6bc71fcb
![]() |
18 19 20 21 22 23 24 25 |
} buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } |
43932caac
![]() |
26 |
lintOptions { |
d6bc71fcb
![]() |
27 28 29 30 31 32 33 34 |
abortOnError false } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:22.2.0' |
43932caac
![]() |
35 36 |
//微信 // compile 'com.tencent.mm.opensdk:wechat-sdk-android-without-mta:+' |
064eb2054
![]() |
37 |
// compile project(':GameSDK') |
38e7800dc
![]() |
38 |
compile(name: 'GameSDK-release4.3.2', ext: 'aar') |
7a5aadf06
![]() |
39 |
|
d6bc71fcb
![]() |
40 |
} |