26 lines
1.0 KiB
Groovy
26 lines
1.0 KiB
Groovy
apply from: '../../constants.gradle'
|
|
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion project.ext.compileSdkVersion
|
|
buildToolsVersion project.ext.buildToolsVersion
|
|
|
|
defaultConfig {
|
|
minSdkVersion 14
|
|
targetSdkVersion project.ext.targetSdkVersion
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(modulePrefix + 'library-core')
|
|
compile 'com.android.support:support-annotations:' + supportLibraryVersion
|
|
compile 'com.google.ads.interactivemedia.v3:interactivemedia:3.7.4'
|
|
compile 'com.google.android.gms:play-services-ads:11.0.2'
|
|
androidTestCompile project(modulePrefix + 'library')
|
|
androidTestCompile 'com.google.dexmaker:dexmaker:' + dexmakerVersion
|
|
androidTestCompile 'com.google.dexmaker:dexmaker-mockito:' + dexmakerVersion
|
|
androidTestCompile 'org.mockito:mockito-core:' + mockitoVersion
|
|
androidTestCompile 'com.android.support.test:runner:' + testSupportLibraryVersion
|
|
}
|