Skip to content

Commit

Permalink
shrinker を更新
Browse files Browse the repository at this point in the history
  • Loading branch information
s1204IT committed Jun 28, 2024
1 parent af115ba commit fefab64
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
minSdk 28
//noinspection ExpiredTargetSdkVersion
targetSdk 22
versionCode 3
versionName "1.1"
versionCode 4
versionName "1.2"
proguardFiles += 'proguard-rules.pro'
multiDexEnabled false
}
Expand Down Expand Up @@ -43,4 +43,4 @@ android {

dependencies {
implementation files('libs/IDchaLibrary.jar')
}
}
Binary file modified app/src/main/assets/shrinker
Binary file not shown.
4 changes: 2 additions & 2 deletions app/src/main/java/com/saradabar/easyblu/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void init() {
addText("- 警告:デバイスが再起動した場合は失敗です。起動後に再度実行してください。");
new Handler().postDelayed(() -> {
String result = shrinker();
if (result.contains("result 49")) {
if (result.contains("Permissive")) {
addText("- 通知:成功しました。");
addText("- 通知:frp.bin の修正を試みます。");
new Handler().postDelayed(this::overwriteFrp, 5000);
Expand Down Expand Up @@ -102,7 +102,7 @@ void retry() {
String text = getText().toString();
addText("- 結果:");
addText(text);
if (text.contains("result 49")) {
if (text.contains("Permissive")) {
addText("- 通知:成功しました。");
addText("- 通知:frp.bin の修正を試みます。");
new Handler().postDelayed(this::overwriteFrp, 5000);
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=544c35d6bd849ae8a5ed0bcea39ba677dc40f49df7d1835561582da2009b961d
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionSha256Sum=a4b4158601f8636cdeeab09bd76afb640030bb5b144aafe261a5e8af027dc612
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
2 changes: 1 addition & 1 deletion gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pluginManagement {
mavenCentral()
}
plugins {
id 'com.android.application' version '8.4.1' apply false
id 'com.android.application' version '8.5.0' apply false
}
}

Expand Down

0 comments on commit fefab64

Please sign in to comment.