mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-19 11:03:01 +00:00
37 lines
790 B
Groovy
37 lines
790 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'
|
|
|
|
implementation files('libs/tinyrtsp.jar')
|
|
|
|
// We expose an interface containing a jmDNS class
|
|
// so we need to expose the jmDNS library to users
|
|
// at compile time.
|
|
api files('libs/jmdns-3.4.2.jar')
|
|
}
|