mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Add proguard configuration for Cast demo app
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=191442704
This commit is contained in:
parent
738b519cef
commit
e98209260a
2 changed files with 10 additions and 1 deletions
|
|
@ -29,7 +29,10 @@ android {
|
||||||
release {
|
release {
|
||||||
shrinkResources true
|
shrinkResources true
|
||||||
minifyEnabled true
|
minifyEnabled true
|
||||||
proguardFiles getDefaultProguardFile('proguard-android.txt')
|
proguardFiles = [
|
||||||
|
"proguard-rules.txt",
|
||||||
|
getDefaultProguardFile('proguard-android.txt')
|
||||||
|
]
|
||||||
}
|
}
|
||||||
debug {
|
debug {
|
||||||
jniDebuggable = true
|
jniDebuggable = true
|
||||||
|
|
|
||||||
6
demos/cast/proguard-rules.txt
Normal file
6
demos/cast/proguard-rules.txt
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
# Proguard rules specific to the Cast demo app.
|
||||||
|
|
||||||
|
# Accessed via menu.xml
|
||||||
|
-keep class android.support.v7.app.MediaRouteActionProvider {
|
||||||
|
*;
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue