File tree Expand file tree Collapse file tree 6 files changed +19
-21
lines changed Expand file tree Collapse file tree 6 files changed +19
-21
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ dependencies {
34
34
35
35
// Hack to make the libs accessor work
36
36
// https://github.com/gradle/gradle/issues/15383
37
- compileOnly(files(libs.javaClass .superclass.protectionDomain.codeSource.location))
37
+ compileOnly(files(libs:: class .java .superclass.protectionDomain.codeSource.location))
38
38
}
39
39
40
40
gradlePlugin {
Original file line number Diff line number Diff line change @@ -124,14 +124,18 @@ abstract class Github : DefaultTask() {
124
124
@get:InputFile
125
125
abstract val configurationFile: RegularFileProperty
126
126
127
+ init {
128
+ configurationFile = project.rootProject.file(" github.properties" )
129
+ }
130
+
127
131
@Input
128
132
val properties: Provider <Properties > = configurationFile.map { Properties ().apply { load(it.asFile.inputStream()) } }
129
133
130
134
@Input
131
- val repo: Provider <String ? > = properties.map< String ?> (PropertyFileTransformer (" github_repo" ))
135
+ val repo: Provider <String > = properties.map(PropertyFileTransformer (" github_repo" ))
132
136
133
137
@Input
134
- val token: Provider <String > = properties.map< String ?> (PropertyFileTransformer (" github_api_key" ))
138
+ val token: Provider <String > = properties.map(PropertyFileTransformer (" github_api_key" ))
135
139
136
140
class PropertyFileTransformer (val key : String ) : Transformer<String?, Properties> {
137
141
override fun transform (`in `: Properties ): String? {
Original file line number Diff line number Diff line change @@ -24,9 +24,3 @@ plugins {
24
24
25
25
alias(libs.plugins.buildlogic.github)
26
26
}
27
-
28
- allprojects {
29
- tasks.withType<Github > {
30
- configurationFile = rootProject.file(" github.properties" )
31
- }
32
- }
Original file line number Diff line number Diff line change 1
1
[versions ]
2
2
androidDesugarJdkLibs = " 2.1.5"
3
- androidGradlePlugin = " 8.10 .1"
4
- androidTools = " 31.9.0 "
3
+ androidGradlePlugin = " 8.11 .1"
4
+ androidTools = " 31.12.1 "
5
5
androidxAnnotation = " 1.9.1"
6
6
collection = " 1.5.0"
7
7
collectionKtx = " 1.5.0"
8
8
libsu = " 6.0.0"
9
- githubApi = " 1.321 "
10
- hiddenapibypass = " 5.0 "
9
+ githubApi = " 1.329 "
10
+ hiddenapibypass = " 6.1 "
11
11
jebrainsAnnotations = " 26.0.2"
12
- kotlin = " 2.2.0 "
12
+ kotlin = " 2.2.10 "
13
13
xposed = " 82"
14
14
preference = " 1.2.1"
15
15
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.13 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-9.0.0 -bin.zip
4
4
networkTimeout =10000
5
5
validateDistributionUrl =true
6
6
zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -39,14 +39,18 @@ dependencyResolutionManagement {
39
39
rootProject.name = " XposedModulets"
40
40
41
41
enableFeaturePreview(" TYPESAFE_PROJECT_ACCESSORS" )
42
+
43
+ include(" :logger" )
44
+ include(" :reflection" )
45
+ include(" :template" )
46
+
42
47
include(" :AlwaysAllowChargingFeedback" )
43
48
include(" :AlwaysAllowMultiInstanceSplit" )
44
49
include(" :AnimationScaleMod" )
45
50
include(" :AntiBrightnessChange" )
46
51
include(" :AutomaticAdvancedSettingsExpander" )
47
- include(" :BetterAnimationScaling" )
48
- include(" :BetterVerboseWiFiLogging" )
49
52
include(" :BetterBluetoothDeviceSort" )
53
+ include(" :BetterVerboseWiFiLogging" )
50
54
include(" :ClassHunter" )
51
55
include(" :CodecMod" )
52
56
include(" :DontResetIfBootedAndConnected" )
@@ -59,7 +63,3 @@ include(":PreventAudioFocus")
59
63
include(" :ResetAllNotificationChannels" )
60
64
include(" :RotationControl" )
61
65
include(" :UpsideWifi" )
62
- include(" :reflection" )
63
- include(" :logger" )
64
-
65
- include(" :template" )
You can’t perform that action at this time.
0 commit comments