3e815a3165
A lot of cleanup is needed for this, but everything works
16 lines
348 B
Groovy
16 lines
348 B
Groovy
//FIXME currently an android library while small amounts of android-specific code remain in SPD-classes
|
|
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion appAndroidCompileSDK
|
|
|
|
defaultConfig {
|
|
//noinspection MinSdkTooLow
|
|
minSdkVersion appAndroidMinSDK
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api project(':SPD-classes')
|
|
}
|