17 lines
481 B
Groovy
17 lines
481 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION)
|
|
buildToolsVersion project.ANDROID_BUILD_TOOLS_VERSION
|
|
|
|
defaultConfig {
|
|
minSdkVersion 8
|
|
targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.android.support:recyclerview-v7:21.0.0'
|
|
compile 'com.android.support:support-v4:21.0.3'
|
|
}
|
|
apply from: './gradle-mvn-push.gradle' |