Skip to content

Commit 21db3c3

Browse files
authored
CT3 に対応
1 parent c832e0c commit 21db3c3

File tree

10 files changed

+175
-64
lines changed

10 files changed

+175
-64
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
* text=auto eol=lf
22
*.bat eol=crlf
3-
/app/src/main/assets/shrinker binary
3+
/app/src/main/assets/* binary
44
*.jar binary
55
*.jks binary

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
uses: actions/setup-java@v4
2929
with:
3030
distribution: 'temurin'
31-
java-version: '17'
31+
java-version: 21
3232

3333
- name: Setup Gradle
34-
uses: gradle/actions/setup-gradle@v3
34+
uses: gradle/actions/setup-gradle@v4
3535

3636
- name: Set environments
3737
run: |
@@ -41,7 +41,7 @@ jobs:
4141
echo "repo=$(echo ${GITHUB_REPOSITORY#$GITHUB_REPOSITORY_OWNER/})"
4242
} >> $GITHUB_ENV
4343
44-
- name: Build with Gradle
44+
- name: Build
4545
run: |
4646
./gradlew assembleDebug --no-daemon --stacktrace
4747
cp -f app/build/outputs/apk/debug/app-debug.apk ${{ env.repo }}-${{ env.version }}.apk
@@ -51,7 +51,7 @@ jobs:
5151
with:
5252
subject-path: ${{ env.repo }}-${{ env.version }}.apk
5353

54-
- name: Upload APK
54+
- name: Upload
5555
uses: actions/upload-artifact@v4
5656
with:
5757
name: ${{ env.repo }}(${{ env.version }}@${{ env.commit }})

app/build.gradle

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ android {
77
compileSdk 34
88

99
defaultConfig {
10-
minSdk 28
10+
minSdk 24
1111
//noinspection ExpiredTargetSdkVersion
1212
targetSdk 22
13-
versionCode 4
14-
versionName "1.2"
13+
versionCode 5
14+
versionName "2.0"
1515
proguardFiles += 'proguard-rules.pro'
1616
multiDexEnabled false
1717
}
@@ -36,8 +36,12 @@ android {
3636
}
3737

3838
compileOptions {
39-
sourceCompatibility JavaVersion.VERSION_17
40-
targetCompatibility JavaVersion.VERSION_17
39+
sourceCompatibility JavaVersion.VERSION_21
40+
targetCompatibility JavaVersion.VERSION_21
41+
}
42+
43+
lintOptions {
44+
ignore 'SdCardPath', 'ProtectedPermissions'
4145
}
4246
}
4347

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:tools="http://schemas.android.com/tools"
3-
xmlns:android="http://schemas.android.com/apk/res/android">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
65
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
7-
<uses-permission android:name="android.permission.WRITE_SETTINGS" tools:ignore="ProtectedPermissions" />
6+
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
87
<uses-permission android:name="jp.co.benesse.dcha.permission.ACCESS_SYSTEM" />
98

109
<application

app/src/main/assets/frp

1 MB
Binary file not shown.

app/src/main/assets/mtk-su

63.6 KB
Binary file not shown.

app/src/main/assets/parted

460 KB
Binary file not shown.

app/src/main/java/com/saradabar/easyblu/MainActivity.java

Lines changed: 151 additions & 48 deletions
Large diffs are not rendered by default.

docs/README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,13 @@ fastboot flashing unlock
3333

3434
## 対応機種
3535

36+
- チャレンジパッド3
3637
- チャレンジパッド Neo
3738
- チャレンジパッド Next
3839

3940
## サンプル画像
4041

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

4344
## 問題の報告
4445

@@ -48,5 +49,9 @@ fastboot flashing unlock
4849

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

51-
- app/src/main/assets/**shrinker**
52-
[**CVE-2022-38181**](https://github.com/SmileTabLabo/CVE-2022-38181)
52+
- **shrinker**
53+
[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)
54+
- **mtk-su**
55+
[Amazing Temp Root for MediaTek ARMv8 \[2020-08-24\] | XDA Forums](https://xdaforums.com/t/3922213/)
56+
- **parted**
57+
[\[HOW TO\] BOOT FROM SD CARD \[SUCCESSFULLY\] on QMobile Z8 with BRICKED/DEAD eMMC | XDA Forums](https://xdaforums.com/t/3712171/)

docs/images/image-01.png

-72.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)