2016-02-01 17:25:40 +03:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2016-12-01 12:51:27 +03:00
|
|
|
compileSdkVersion 25
|
2017-01-16 18:40:06 +03:00
|
|
|
buildToolsVersion "25.0.2"
|
2016-02-01 17:25:40 +03:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 14
|
2016-12-01 12:51:27 +03:00
|
|
|
targetSdkVersion 25
|
2016-02-01 17:25:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
|
|
}
|
2016-08-04 14:25:52 +03:00
|
|
|
debug {
|
|
|
|
jniDebuggable true
|
|
|
|
renderscriptDebuggable true
|
|
|
|
}
|
2016-02-01 17:25:40 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2017-02-22 16:29:42 +03:00
|
|
|
compile 'com.android.support:appcompat-v7:25.2.0'
|
2016-02-01 17:25:40 +03:00
|
|
|
}
|