2019-06-26 17:35:26 -07:00

35 lines
737 B
Groovy

apply plugin: 'com.android.library'
android {
buildToolsVersion '28.0.3'
compileSdkVersion 28
defaultConfig {
minSdkVersion 16
targetSdkVersion 28
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt')
}
}
externalNativeBuild {
ndkBuild {
path "src/main/jni/Android.mk"
}
}
}
dependencies {
implementation 'com.squareup.okhttp:okhttp:2.7.5'
implementation 'com.squareup.okio:okio:1.13.0'
// 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'
}