mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-19 02:53:05 +00:00
34 lines
708 B
Groovy
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'
|
|
}
|