forked from substratum/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
171 lines (151 loc) · 6.33 KB
/
build.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
import groovy.io.FileType
import javax.crypto.Cipher
import javax.crypto.SecretKey
import javax.crypto.spec.IvParameterSpec
import javax.crypto.spec.SecretKeySpec
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: 'ThemerConstants.gradle'
ext {
// Themers: DO NOT MODIFY
byte[] key = new byte[16]
new Random().nextBytes(key)
KEY = key
byte[] iv = new byte[16]
new Random().nextBytes(iv)
IV_KEY = iv
}
android {
compileSdkVersion 28
defaultConfig {
// If you're planning to change up the package name, ensure you have read the readme
// thoroughly!
applicationId "substratum.theme.template"
// We are only supporting Nougat and above, all new changes will incorporate Nougat changes
// to the substratum repo rather than anything lower. Keep targetSdkVersion the same.
minSdkVersion 24
// Both versions must be changed to increment on Play Store/user's devices
versionCode 2
versionName "2.0"
// Themers: DO NOT MODIFY
buildConfigField "boolean", "SUPPORTS_THIRD_PARTY_SYSTEMS", "" + SUPPORTS_THIRD_PARTY_SYSTEMS
buildConfigField "boolean", "ENABLE_APP_BLACKLIST_CHECK", "" + ENABLE_APP_BLACKLIST_CHECK
buildConfigField "boolean", "ALLOW_THIRD_PARTY_SUBSTRATUM_BUILDS", "" + ALLOW_THIRD_PARTY_SUBSTRATUM_BUILDS
buildConfigField "String", "IV_KEY", "\"" + IV_KEY + "\""
buildConfigField "byte[]", "DECRYPTION_KEY", String.valueOf("\"" + KEY + "\"").replace("\"", "").replace("[", "{").replace("]", "}")
buildConfigField "byte[]", "IV_KEY", String.valueOf("\"" + IV_KEY + "\"").replace("\"", "").replace("[", "{").replace("]", "}")
resValue "string", "encryption_status", (shouldEncrypt() ? "onCompileVerify" : "false")
}
buildTypes {
debug {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
// Themers: DO NOT MODIFY
buildConfigField "boolean", "ENFORCE_GOOGLE_PLAY_INSTALL", "false"
buildConfigField "String", "BASE_64_LICENSE_KEY", "\"\""
buildConfigField "String", "APK_SIGNATURE_PRODUCTION", "\"\""
}
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
// Themers: DO NOT MODIFY
buildConfigField "boolean", "ENFORCE_GOOGLE_PLAY_INSTALL", "" + ENFORCE_GOOGLE_PLAY_INSTALL
buildConfigField "String", "BASE_64_LICENSE_KEY", "\"" + BASE_64_LICENSE_KEY + "\""
buildConfigField "String", "APK_SIGNATURE_PRODUCTION", "\"" + APK_SIGNATURE_PRODUCTION + "\""
}
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.github.javiersantos:PiracyChecker:1.2.3'
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version") {
transitive = true
}
}
// Themers: DO NOT MODIFY ANYTHING BELOW
task encryptAssets {
if (!shouldEncrypt()) {
println("Skipping assets encryption...")
return
}
def tempAssets = new File(getProjectDir(), "/src/main/assets-temp")
if (!tempAssets.exists()) {
println("Encrypting duplicated assets, don't worry, your original assets are safe...")
def list = []
def dir = new File(getProjectDir(), "/src/main/assets")
dir.eachFileRecurse(FileType.FILES) { file ->
list << file
FileInputStream fis = new FileInputStream(file)
File fo = new File(file.getAbsolutePath().replace("assets", "assets-temp"))
fo.getParentFile().mkdirs()
FileOutputStream fos = new FileOutputStream(fo)
byte[] buffer = new byte[4096]
int n
while ((n = fis.read(buffer)) != -1) {
fos.write(buffer, 0, n)
}
fis.close()
fos.close()
}
list.each {
if (it.getAbsolutePath().contains("overlays")) {
Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding")
SecretKey secret = new SecretKeySpec(KEY, "AES")
IvParameterSpec iv = new IvParameterSpec(IV_KEY)
cipher.init(Cipher.ENCRYPT_MODE, secret, iv)
FileInputStream fis = new FileInputStream(it)
FileOutputStream fos = new FileOutputStream(it.getAbsolutePath() + ".enc")
byte[] input = new byte[64]
int bytesRead
while ((bytesRead = fis.read(input)) != -1) {
byte[] output = cipher.update(input, 0, bytesRead)
if (output != null) {
fos.write(output)
}
}
byte[] output = cipher.doFinal()
if (output != null) {
fos.write(output)
}
fis.close()
fos.flush()
fos.close()
it.delete()
}
}
} else {
throw new RuntimeException("Old temporary assets found! Try and do a clean project.")
}
}
project.afterEvaluate {
preBuild.dependsOn encryptAssets
}
gradle.buildFinished {
def tempAssets = new File(getProjectDir(), "/src/main/assets-temp")
if (tempAssets.exists()) {
println("Cleaning duplicated encrypted assets, not your decrypted assets...")
def encryptedAssets = new File(getProjectDir(), "src/main/assets")
encryptedAssets.deleteDir()
tempAssets.eachFileRecurse(FileType.FILES) { file ->
FileInputStream fis = new FileInputStream(file)
File fo = new File(file.getAbsolutePath().replace("assets-temp", "assets"))
fo.getParentFile().mkdirs()
FileOutputStream fos = new FileOutputStream(fo)
byte[] buffer = new byte[4096]
int n
while ((n = fis.read(buffer)) != -1) {
fos.write(buffer, 0, n)
}
fis.close()
fos.close()
}
tempAssets.deleteDir()
}
}
boolean shouldEncrypt() {
ArrayList<String> tasks = project.gradle.startParameter.taskNames
return SHOULD_ENCRYPT_ASSETS && Arrays.toString(tasks).toLowerCase().contains("release")
}