You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.2 KiB
46 lines
1.2 KiB
7 months ago
|
apply plugin: 'com.android.application'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 29
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId "com.huanglong.dlna"
|
||
|
minSdkVersion 29
|
||
|
targetSdkVersion 29
|
||
|
versionCode 1
|
||
|
versionName "1.0"
|
||
|
flavorDimensions "default"
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
android.applicationVariants.all {
|
||
|
variant ->
|
||
|
variant.outputs.all {
|
||
|
//在这里修改apk文件名
|
||
|
outputFileName = "DMSDemo.apk"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
lintOptions {
|
||
|
abortOnError false
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
// implementation files('../../../../binary/packages/GalleryCore/gallerycore.jar')
|
||
|
// implementation files('../GalleryL_adapter/build/intermediates/aar_main_jar/release/classes.jar')
|
||
|
// implementation files('../DLNA/build/intermediates/aar_main_jar/release/classes.jar')
|
||
|
//noinspection GradleCompatible
|
||
|
// implementation fileTree(dir: "libs", include: ["*.jar"])
|
||
|
implementation 'com.android.support:support-v13:28.0.0'
|
||
|
}
|