Magic_Ling_Pixel_Dungeon/core/build.gradle
Evan Debenham 3e815a3165 v0.7.4b: restructured initialization logic into new android module
A lot of cleanup is needed for this, but everything works
2019-08-01 16:04:14 -04:00

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')
}