mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-22 20:43:03 +00:00
24 lines
503 B
Groovy
24 lines
503 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion "25.0.2"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 16
|
|
targetSdkVersion 25
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt')
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.squareup.okhttp:okhttp:2.4.0'
|
|
compile 'com.squareup.okio:okio:1.5.0'
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
}
|