Compare commits

...

2 Commits

Author SHA1 Message Date
FongMi 26dd28e7d2 Update build.gradle 10 months ago
FongMi 8ed9a0b80d Fix bug 10 months ago
  1. 2
      app/build.gradle
  2. 1
      app/src/main/java/com/github/catvod/utils/Path.java
  3. 4
      build.gradle
  4. BIN
      jar/custom_spider.jar
  5. 2
      jar/custom_spider.jar.md5

@ -42,7 +42,7 @@ android {
dependencies {
implementation 'com.squareup.okhttp3:okhttp:' + okhttpVersion
implementation 'com.github.thegrizzlylabs:sardine-android:0.9'
implementation 'wang.harlon.quickjs:wrapper-android:2.4.3'
implementation 'wang.harlon.quickjs:wrapper-android:2.4.4'
implementation 'com.google.code.gson:gson:2.11.0'
implementation 'cn.wanghaomiao:JsoupXpath:2.5.1'
implementation 'com.orhanobut:logger:2.2.0'

@ -123,6 +123,7 @@ public class Path {
public static File create(File file) throws Exception {
try {
if (file.getParentFile() != null) mkdir(file.getParentFile());
if (!file.canWrite()) file.setWritable(true);
if (!file.exists()) file.createNewFile();
Shell.exec("chmod 777 " + file);

@ -1,8 +1,8 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'ru.cleverpumpkin.proguard-dictionaries-generator' version '1.0.8' apply false
id 'com.android.application' version '8.8.0' apply false
id 'com.android.library' version '8.8.0' apply false
id 'com.android.application' version '8.8.1' apply false
id 'com.android.library' version '8.8.1' apply false
}
tasks.register('clean', Delete) {

Binary file not shown.

@ -1 +1 @@
37b8ee9b068856fa4cae6cc2e6050d7b
98e25197fce4b874343de7d40011de1d

Loading…
Cancel
Save