Skip to content

Commit

Permalink
v1.10.0 (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
s1204IT authored Oct 6, 2024
1 parent 7cbb32b commit 0d6c9f4
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
} >> $GITHUB_ENV
- name: Set LINE Original Version Name
run: echo "line_ver=$(echo $(echo ${{ env.line_ver_code }} | cut -c-2).$(echo ${{ env.line_ver_code }} | cut -c3-4).$(echo ${{ env.line_ver_code }} | cut -c5) | sed -e 's/.0/./')" >> $GITHUB_ENV
run: echo "line_ver=$(echo '${{ env.line_ver_code }}' | awk '{print substr($0,1,2)"."substr($0,3,2)"."int(substr($0,5,1))}')" >> $GITHUB_ENV

- name: Setup Java
uses: actions/setup-java@v4
Expand Down
22 changes: 12 additions & 10 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,11 @@ android {
namespace 'io.github.chipppppppppp.lime'
compileSdk 34

buildFeatures.buildConfig = true

defaultConfig {
minSdk 28
//noinspection OldTargetApi
targetSdk 33
versionCode 13
versionName "1.9.2"
targetSdk 34
versionCode 14
versionName "1.10.0"
multiDexEnabled false
proguardFiles += 'proguard-rules.pro'
buildConfigField 'String', 'HOOK_TARGET_VERSION', '"141600311"'
Expand Down Expand Up @@ -49,13 +46,18 @@ android {
checkReleaseBuilds false
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
buildFeatures{
buildConfig true
compose false
}

dependenciesInfo {
includeInApk false
includeInBundle false
}

aaptOptions {
aaptOptions.additionalParameters '--allow-reserved-package-id', '--package-id', '0x64'
additionalParameters '--allow-reserved-package-id', '--package-id', '0x64'
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public void hook(LimeOptions limeOptions, XC_LoadPackage.LoadPackageParam loadPa
loadPackageParam.classLoader.loadClass(Constants.REQUEST_HOOK.className),
Constants.REQUEST_HOOK.methodName,
new XC_MethodHook() {
static final Set<String> requests = new HashSet<>(Arrays.asList(
final Set<String> requests = new HashSet<>(Arrays.asList(
"noop",
"reportAbuseEx",
"reportDeviceState",
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=1541fa36599e12857140465f3c91a97409b4512501c26f9631fb113e392c5bd1
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip
distributionSha256Sum=31c55713e40233a8303827ceb42ca48a47267a0ad4bab9177123121e71524c26
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit 0d6c9f4

Please sign in to comment.