mirror of
https://github.com/JamesonHuang/OpenWrt_Luci_Lua.git
synced 2024-11-24 06:10:11 +00:00
30 lines
661 B
Groovy
30 lines
661 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 19
|
|
buildToolsVersion "21.1.1"
|
|
|
|
defaultConfig {
|
|
//multiDexEnabled true
|
|
applicationId "com.talent.allshare"
|
|
|
|
minSdkVersion 17
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile files('libs/dlna_framework.jar')
|
|
//compile files('libs/kxml2-min-2.3.0.jar')
|
|
//compile files('libs/xercesImpl.jar')
|
|
}
|
|
/*configurations {
|
|
all*.exclude group: 'com.android.support', module: 'support-v4'
|
|
}*/
|