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