Skip to content

Commit

Permalink
CT3 に対応
Browse files Browse the repository at this point in the history
  • Loading branch information
s1204IT authored Nov 21, 2024
1 parent c832e0c commit 21db3c3
Show file tree
Hide file tree
Showing 10 changed files with 175 additions and 64 deletions.
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
* text=auto eol=lf
*.bat eol=crlf
/app/src/main/assets/shrinker binary
/app/src/main/assets/* binary
*.jar binary
*.jks binary
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
java-version: 21

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
uses: gradle/actions/setup-gradle@v4

- name: Set environments
run: |
Expand All @@ -41,7 +41,7 @@ jobs:
echo "repo=$(echo ${GITHUB_REPOSITORY#$GITHUB_REPOSITORY_OWNER/})"
} >> $GITHUB_ENV
- name: Build with Gradle
- name: Build
run: |
./gradlew assembleDebug --no-daemon --stacktrace
cp -f app/build/outputs/apk/debug/app-debug.apk ${{ env.repo }}-${{ env.version }}.apk
Expand All @@ -51,7 +51,7 @@ jobs:
with:
subject-path: ${{ env.repo }}-${{ env.version }}.apk

- name: Upload APK
- name: Upload
uses: actions/upload-artifact@v4
with:
name: ${{ env.repo }}(${{ env.version }}@${{ env.commit }})
Expand Down
14 changes: 9 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ android {
compileSdk 34

defaultConfig {
minSdk 28
minSdk 24
//noinspection ExpiredTargetSdkVersion
targetSdk 22
versionCode 4
versionName "1.2"
versionCode 5
versionName "2.0"
proguardFiles += 'proguard-rules.pro'
multiDexEnabled false
}
Expand All @@ -36,8 +36,12 @@ android {
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
sourceCompatibility JavaVersion.VERSION_21
targetCompatibility JavaVersion.VERSION_21
}

lintOptions {
ignore 'SdCardPath', 'ProtectedPermissions'
}
}

Expand Down
5 changes: 2 additions & 3 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_SETTINGS" tools:ignore="ProtectedPermissions" />
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
<uses-permission android:name="jp.co.benesse.dcha.permission.ACCESS_SYSTEM" />

<application
Expand Down
Binary file added app/src/main/assets/frp
Binary file not shown.
Binary file added app/src/main/assets/mtk-su
Binary file not shown.
Binary file added app/src/main/assets/parted
Binary file not shown.
199 changes: 151 additions & 48 deletions app/src/main/java/com/saradabar/easyblu/MainActivity.java

Large diffs are not rendered by default.

11 changes: 8 additions & 3 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,13 @@ fastboot flashing unlock

## 対応機種

- チャレンジパッド3
- チャレンジパッド Neo
- チャレンジパッド Next

## サンプル画像

[![](images/image-01.png)](#)
[![](https://github.com/user-attachments/assets/e7b4b17b-dab3-4d6b-a230-1157ea54f0db)](#)

## 問題の報告

Expand All @@ -48,5 +49,9 @@ fastboot flashing unlock

このアプリは以下のライブラリーを使用しています。

- app/src/main/assets/**shrinker**
[**CVE-2022-38181**](https://github.com/SmileTabLabo/CVE-2022-38181)
- **shrinker**
[SmileTabLabo/CVE-2022-38181: CVE-2022-38181 PoC for CTX(TAB-A05-BD) and CTZ(TAB-A05-BA1)](https://github.com/SmileTabLabo/CVE-2022-38181)
- **mtk-su**
[Amazing Temp Root for MediaTek ARMv8 \[2020-08-24\] | XDA Forums](https://xdaforums.com/t/3922213/)
- **parted**
[\[HOW TO\] BOOT FROM SD CARD \[SUCCESSFULLY\] on QMobile Z8 with BRICKED/DEAD eMMC | XDA Forums](https://xdaforums.com/t/3712171/)
Binary file removed docs/images/image-01.png
Binary file not shown.

0 comments on commit 21db3c3

Please sign in to comment.