24 lines
628 B
Groovy
24 lines
628 B
Groovy
apply plugin: 'com.android.library'
|
|
/*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion '25.0.3'
|
|
|
|
defaultConfig {
|
|
minSdkVersion 9
|
|
targetSdkVersion 25
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support:appcompat-v7:25.3.1'
|
|
compile 'com.android.support:support-v4:25.3.1'
|
|
compile 'com.android.support:recyclerview-v7:25.3.1'
|
|
}
|