Skip to content

Commit

Permalink
Bump version to beta 2105
Browse files Browse the repository at this point in the history
Test: Build, flash, boot
  • Loading branch information
canyie committed Feb 15, 2024
1 parent 5ca7f91 commit 62b6e9a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ ext {
ndkVersion = "25.2.9519653"
minSdkVersion = 21
targetSdkVersion = 34 // useless for magisk module
versionCode = 2104
versionCode = 2105
versionName = '2.1'
riruApiVersion = 5 // For Riru v21
riruNewApiVersion = 25 // For Riru v22+
}

task clean(type: Delete) {
tasks.register('clean', Delete) {
delete rootProject.buildDir
}
3 changes: 2 additions & 1 deletion hiddenapi-stubs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ dependencies {
compileOnly "dev.rikka.tools.refine:annotation:$refinePluginVersion"
}

task jarStubApis(type: Jar, dependsOn: build) {
tasks.register('jarStubApis', Jar) {
dependsOn build
archiveBaseName = 'hiddenapis-stub'
from("$projectDir/build/intermediates/javac/release/classes/")
destinationDirectory = layout.buildDirectory.dir("$rootDir/app/lib/")
Expand Down

0 comments on commit 62b6e9a

Please sign in to comment.