Browse Source

Webserver: add dev build variant

This is to avoid falling back to debug when building with compile.sh.
It would build all the java, then when build all modules the webserver
will not have a dev variante, causing vlc-android to fallback to the
debug variant.
merge-requests/1990/head
Duncan McNamara 3 years ago
parent
commit
06e24ffaf7
  1. 4
      application/webserver/build.gradle

4
application/webserver/build.gradle

@ -27,6 +27,10 @@ android {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
dev {
initWith debug
matchingFallbacks = ['debug']
}
}
task webCopy(type: Copy) {

Loading…
Cancel
Save