Skip to content

Commit 8759ccb

Browse files
committed
Deprecation notice
1 parent 2cc1e9b commit 8759ccb

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: ci
2+
on: [push, pull_request]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
- uses: actions/setup-java@v1
9+
with:
10+
java-version: 1.8
11+
- uses: gradle/wrapper-validation-action@v1
12+
- run: ./gradlew build

librootjava/README.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# libRootJava
22

3+
[![ci][1]][2]
4+
35
Run Java (and Kotlin) code as root!
46

57
- Runs code directly from your APK
@@ -20,6 +22,18 @@ crediting me is appreciated.
2022
If you modify the library itself when you use it in your projects,
2123
you are kindly requested to share the sources of those modifications.
2224

25+
## Deprecated
26+
27+
This library is not under active development right now, as I've mostly
28+
moved away from the Android world. While I believe it still works great,
29+
if it breaks due to changes on new Android versions or root solutions,
30+
fixes may be slow to appear.
31+
32+
If you're writing a new app, you might consider using
33+
[TopJohnWu's libsu](https://github.com/topjohnwu/libsu) instead. Barring
34+
some edge-cases (that I personally seem to be the biggest user of) the
35+
capabilities should be similar, but it's likely to be better maintained.
36+
2337
## Spaghetti Sauce Project
2438

2539
This library is part of the [Spaghetti Sauce Project](https://github.com/Chainfire/spaghetti_sauce_project).
@@ -438,4 +452,7 @@ implementation 'eu.chainfire:librootjava:1.3.1'
438452

439453
This library includes its own Logger class that is used
440454
throughout, which should probably have been refactored out.
441-
It wasn't.
455+
It wasn't.
456+
457+
[1]: https://github.com/Chainfire/libsuperuser/workflows/ci/badge.svg
458+
[2]: https://github.com/Chainfire/libsuperuser/actions

0 commit comments

Comments
 (0)