-
Notifications
You must be signed in to change notification settings - Fork 444
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
House keeping pre release of 0.1.1 (#234)
* Readme updates as per #189, updated CHANGE_LOG filename and formatting. Plus a version bump in AGP * Fix insecure binary file #180 thanks to @KaviIDPal for the changes. * Removed selinux check that cannot be accessed in later Android versions * Code formatting and removal of unused code * remove unneeded dependency * switch to new Circle CI docker images based on date https://circleci.com/developer/images/image/cimg/android
- Loading branch information
Showing
34 changed files
with
450 additions
and
405 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
**Describe the bug/feature request/question** | ||
A clear and concise description of what the bug/feature/question is. Including steps to reproduce and stack trace if applicable. | ||
|
||
**Rootbeer Library Version** | ||
Please provide the version of the library where the issue is present (e.g., 0.1.0) | ||
|
||
**Device Information** | ||
- Device: [e.g., Pixel 4] | ||
- OS: [e.g., Android 11] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
_Provide a brief description of the goal and implementation. Add comments inline for any parts of this change that you would like to highlight to the reviewer_ | ||
|
||
### Video (optional) | ||
|
||
_Demo of the functionality or walkthrough summary of the code._ | ||
|
||
### Developer checklist | ||
|
||
- [ ] Run the app and tested the new/edited functionality to conform to the expected behaviour | ||
- [ ] Run the following `./gradlew test` and confirmed all tests pass. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,41 @@ | ||
Change Log | ||
RootBeer Library Change Log | ||
=========================== | ||
|
||
# 0.1.1 | ||
|
||
* Support for 16KB page sizes for native lib (Android 15 support) | ||
* Removed `Util.isSelinuxFlagInEnabled()`. This was never part of the `isRooted()` check but as we are unable to get `ro.build.selinux` in later versions of Android it has been removed from the Util and sample app. | ||
|
||
Internal changes: | ||
* #229 Gradle, Build scripts, Maven Plugin, NDK update by @ArtsemKurantsou | ||
|
||
# 0.1.0 | ||
|
||
#0.1.0 | ||
* Add fstack protector #136 @slawert | ||
|
||
#0.0.9 | ||
# 0.0.9 | ||
|
||
* Support for Android TV devices #129 @deepakpk009 | ||
* Add additional dangerous apps packages #145 @Fi5t | ||
* ~Add fstack protector #136 @slawert~ Note this was found in #170 to have not been applied and fixed in 0.1.0 | ||
|
||
#0.0.8 | ||
# 0.0.8 | ||
|
||
* Removed busybox from the default root checking methods | ||
* Additional root app packages added | ||
* Use PATH environment variable to find places su binaries might be hiding | ||
* Updated sample app to AndroidX | ||
|
||
#0.0.7 | ||
# 0.0.7 | ||
|
||
* Added a check to see if the native library is available to prevent crashing | ||
* Automatic building of native binaries if NDK is present | ||
|
||
#0.0.6 | ||
# 0.0.6 | ||
|
||
* more su directory checks | ||
* fix crash when native lib load fails | ||
* updated NDK build | ||
* Added method to do root checks but ignoring the busybox due to false positives | ||
* Allow setting of logging level | ||
* UI tweeks to sample app | ||
* UI tweaks to sample app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools"> | ||
xmlns:tools="http://schemas.android.com/tools"> | ||
|
||
<application | ||
android:name=".RootSampleApp" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:theme="@style/AppTheme.NoActionBar" | ||
tools:ignore="AllowBackup,GoogleAppIndexingWarning"> | ||
|
||
<activity | ||
android:name=".MainActivity" | ||
android:exported="true" | ||
<application | ||
android:name=".RootSampleApp" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:screenOrientation="unspecified"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
android:theme="@style/AppTheme.NoActionBar" | ||
tools:ignore="AllowBackup,GoogleAppIndexingWarning"> | ||
|
||
<activity | ||
android:name=".MainActivity" | ||
android:exported="true" | ||
android:label="@string/app_name" | ||
android:screenOrientation="unspecified"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
|
||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
</application> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
</application> | ||
|
||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.