-
Notifications
You must be signed in to change notification settings - Fork 0
/
AdvancedConstants.kt
55 lines (50 loc) · 2.04 KB
/
AdvancedConstants.kt
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package substratum.theme.template
object AdvancedConstants {
// Custom message on theme launch, see theme_strings.xml for changing the dialog content
// Set SHOW_DIALOG_REPEATEDLY to true if you want the dialog to be showed on every theme launch
const val SHOW_LAUNCH_DIALOG = false
const val SHOW_DIALOG_REPEATEDLY = false
// Blacklisted APKs to prevent theme launching, these include simple regex formatting, without
// full regex formatting (e.g. com.android. will block everything that starts with com.android.)
val BLACKLISTED_APPLICATIONS = arrayOf(
"cc.madkite.freedom",
"zone.jasi2169.uretpatcher",
"uret.jasi2169.patcher",
"p.jasi2169.al3",
"com.dimonvideo.luckypatcher",
"com.chelpus.lackypatch",
"com.forpda.lp",
"com.android.vending.billing.InAppBillingService",
"com.android.vending.billing.InAppBillingSorvice",
"com.android.vendinc",
"com.appcake",
"ac.market.store",
"org.sbtools.gamehack",
"com.zune.gamekiller",
"com.aag.killer",
"com.killerapp.gamekiller",
"cn.lm.sq",
"net.schwarzis.game_cih",
"org.creeplays.hack",
"com.baseappfull.fwd",
"com.zmapp",
"com.dv.marketmod.installer",
"org.mobilism.android",
"com.blackmartalpha",
"org.blackmart.market",
"com.happymod.apk"
)
// List of all organization theming systems officially supported by the team
val ORGANIZATION_THEME_SYSTEMS = arrayOf(
"projekt.substratum",
"projekt.substratum.debug",
"projekt.substratum.lite",
"projekt.themer"
)
// List of other theme systems that are officially unsupported by the team, but fully supported
// by their corresponding organizations
val OTHER_THEME_SYSTEMS = arrayOf(
"com.slimroms.thememanager",
"com.slimroms.omsbackend"
)
}