2019-08-01 19:35:27 +00:00
|
|
|
//FIXME currently an android library while small amounts of android-specific code remain in SPD-classes
|
|
|
|
apply plugin: 'com.android.library'
|
2016-08-13 06:11:29 +00:00
|
|
|
|
|
|
|
android {
|
2019-07-14 19:50:20 +00:00
|
|
|
compileSdkVersion appAndroidCompileSDK
|
2016-08-13 06:11:29 +00:00
|
|
|
|
2018-02-19 21:58:01 +00:00
|
|
|
defaultConfig {
|
2019-04-18 17:13:43 +00:00
|
|
|
//noinspection MinSdkTooLow
|
2019-07-14 19:50:20 +00:00
|
|
|
minSdkVersion appAndroidMinSDK
|
2016-08-13 06:11:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-08-01 19:35:27 +00:00
|
|
|
api project(':SPD-classes')
|
2016-08-13 06:11:29 +00:00
|
|
|
}
|