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 {
3434
3535 // Hack to make the libs accessor work
3636 // 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))
3838}
3939
4040gradlePlugin {
Original file line number Diff line number Diff line change @@ -124,14 +124,18 @@ abstract class Github : DefaultTask() {
124124 @get:InputFile
125125 abstract val configurationFile: RegularFileProperty
126126
127+ init {
128+ configurationFile = project.rootProject.file(" github.properties" )
129+ }
130+
127131 @Input
128132 val properties: Provider <Properties > = configurationFile.map { Properties ().apply { load(it.asFile.inputStream()) } }
129133
130134 @Input
131- val repo: Provider <String ? > = properties.map< String ?> (PropertyFileTransformer (" github_repo" ))
135+ val repo: Provider <String > = properties.map(PropertyFileTransformer (" github_repo" ))
132136
133137 @Input
134- val token: Provider <String > = properties.map< String ?> (PropertyFileTransformer (" github_api_key" ))
138+ val token: Provider <String > = properties.map(PropertyFileTransformer (" github_api_key" ))
135139
136140 class PropertyFileTransformer (val key : String ) : Transformer<String?, Properties> {
137141 override fun transform (`in `: Properties ): String? {
Original file line number Diff line number Diff line change @@ -24,9 +24,3 @@ plugins {
2424
2525 alias(libs.plugins.buildlogic.github)
2626}
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 11[versions ]
22androidDesugarJdkLibs = " 2.1.5"
3- androidGradlePlugin = " 8.10 .1"
4- androidTools = " 31.9.0 "
3+ androidGradlePlugin = " 8.11 .1"
4+ androidTools = " 31.12.1 "
55androidxAnnotation = " 1.9.1"
66collection = " 1.5.0"
77collectionKtx = " 1.5.0"
88libsu = " 6.0.0"
9- githubApi = " 1.321 "
10- hiddenapibypass = " 5.0 "
9+ githubApi = " 1.329 "
10+ hiddenapibypass = " 6.1 "
1111jebrainsAnnotations = " 26.0.2"
12- kotlin = " 2.2.0 "
12+ kotlin = " 2.2.10 "
1313xposed = " 82"
1414preference = " 1.2.1"
1515
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =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
44networkTimeout =10000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -39,14 +39,18 @@ dependencyResolutionManagement {
3939rootProject.name = " XposedModulets"
4040
4141enableFeaturePreview(" TYPESAFE_PROJECT_ACCESSORS" )
42+
43+ include(" :logger" )
44+ include(" :reflection" )
45+ include(" :template" )
46+
4247include(" :AlwaysAllowChargingFeedback" )
4348include(" :AlwaysAllowMultiInstanceSplit" )
4449include(" :AnimationScaleMod" )
4550include(" :AntiBrightnessChange" )
4651include(" :AutomaticAdvancedSettingsExpander" )
47- include(" :BetterAnimationScaling" )
48- include(" :BetterVerboseWiFiLogging" )
4952include(" :BetterBluetoothDeviceSort" )
53+ include(" :BetterVerboseWiFiLogging" )
5054include(" :ClassHunter" )
5155include(" :CodecMod" )
5256include(" :DontResetIfBootedAndConnected" )
@@ -59,7 +63,3 @@ include(":PreventAudioFocus")
5963include(" :ResetAllNotificationChannels" )
6064include(" :RotationControl" )
6165include(" :UpsideWifi" )
62- include(" :reflection" )
63- include(" :logger" )
64-
65- include(" :template" )
You can’t perform that action at this time.
0 commit comments