2019-07-13 23:55:48 -07:00

34 lines
708 B
Groovy

apply plugin: 'com.android.library'
android {
compileSdkVersion 29
defaultConfig {
minSdkVersion 16
targetSdkVersion 29
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt')
}
}
externalNativeBuild {
ndkBuild {
path "src/main/jni/Android.mk"
}
}
}
dependencies {
implementation 'com.squareup.okhttp3:okhttp:3.12.3'
implementation 'com.squareup.okio:okio:1.17.4'
// We expose an interface containing a jmDNS class
// so we need to expose the jmDNS library to users
// at compile time.
api 'org.jmdns:jmdns:3.5.5'
}