File tree 2 files changed +17
-17
lines changed
2 files changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -16,20 +16,3 @@ allprojects {
16
16
mavenCentral()
17
17
}
18
18
}
19
-
20
- android {
21
- signingConfigs {
22
- release {
23
- def key_file = System . getenv(" KEYSTORE_FILENAME" )
24
- storeFile file(keyfile != null ? key_file : " keystore/dashchan.keystore" )
25
- storePassword System . getenv(" KEYSTORE_PASSWORD" )
26
- keyAlias System . getenv(" RELEASE_SIGN_KEY_ALIAS" )
27
- keyPassword System . getenv(" RELEASE_SIGN_KEY_PASSWORD" )
28
- }
29
- }
30
- buildTypes {
31
- release {
32
- signingConfig signingConfigs. release
33
- }
34
- }
35
- }
Original file line number Diff line number Diff line change 8
8
9
9
dependencies {
10
10
implementation ' org.jsoup:jsoup:1.15.2'
11
+ }
12
+
13
+ android {
14
+ signingConfigs {
15
+ release {
16
+ def key_file = System . getenv(" KEYSTORE_FILENAME" )
17
+ storeFile file(key_file != null ? key_file : " keystore/dashchan.keystore" )
18
+ storePassword System . getenv(" KEYSTORE_PASSWORD" )
19
+ keyAlias System . getenv(" RELEASE_SIGN_KEY_ALIAS" )
20
+ keyPassword System . getenv(" RELEASE_SIGN_KEY_PASSWORD" )
21
+ }
22
+ }
23
+ buildTypes {
24
+ release {
25
+ signingConfig signingConfigs. release
26
+ }
27
+ }
11
28
}
You can’t perform that action at this time.
0 commit comments