forked from RyensX/MediaBox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
andresguard.gradle
32 lines (30 loc) · 895 Bytes
/
andresguard.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
def andresguard = [:]
def whiteList = [
// skin
"R.drawable.*_skin*",
"R.color.*_skin*",
"R.style.*.skin*",
// for your icon
"R.mipmap.ic_launcher",
"R.mipmap.ic_launcher_round",
// for fabric
"R.string.com.crashlytics.*",
// for google-services
"R.string.google_app_id",
"R.string.gcm_defaultSenderId",
"R.string.default_web_client_id",
"R.string.ga_trackingId",
"R.string.firebase_database_url",
"R.string.google_api_key",
"R.string.google_crash_reporting_api_key",
"R.drawable.tb_*",
"R.drawable.sina*",
"R.drawable.qq_*",
"R.drawable.tb_*",
"R.id.*messager*",
"R.id.progress_bar_parent",
"R.id.socialize_*",
"R.id.webView"
]
andresguard.whiteList = whiteList
ext.andresguard = andresguard