Merge branch 'main' of https://github.com/FongMi/CatVodSpider
This commit is contained in:
commit
664c4804b8
|
|
@ -6,6 +6,7 @@
|
||||||
-keep class com.github.catvod.js.* { *; }
|
-keep class com.github.catvod.js.* { *; }
|
||||||
-keep class com.github.catvod.crawler.* { *; }
|
-keep class com.github.catvod.crawler.* { *; }
|
||||||
-keep class com.github.catvod.spider.* { public <methods>; }
|
-keep class com.github.catvod.spider.* { public <methods>; }
|
||||||
|
-keep class com.github.catvod.parser.* { public <methods>; }
|
||||||
|
|
||||||
# Gson
|
# Gson
|
||||||
-keepattributes Signature
|
-keepattributes Signature
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#Mon Aug 22 15:05:50 CST 2022
|
#Wed Mar 29 12:54:35 CST 2023
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ rd /s/q "%~dp0\Smali_classes"
|
||||||
java -jar "%~dp0\3rd\baksmali-2.5.2.jar" d "%~dp0\..\app\build\intermediates\dex\release\minifyReleaseWithR8\classes.dex" -o "%~dp0\Smali_classes"
|
java -jar "%~dp0\3rd\baksmali-2.5.2.jar" d "%~dp0\..\app\build\intermediates\dex\release\minifyReleaseWithR8\classes.dex" -o "%~dp0\Smali_classes"
|
||||||
|
|
||||||
rd /s/q "%~dp0\spider.jar\smali\com\github\catvod\spider"
|
rd /s/q "%~dp0\spider.jar\smali\com\github\catvod\spider"
|
||||||
|
rd /s/q "%~dp0\spider.jar\smali\com\github\catvod\parser"
|
||||||
rd /s/q "%~dp0\spider.jar\smali\com\github\catvod\js"
|
rd /s/q "%~dp0\spider.jar\smali\com\github\catvod\js"
|
||||||
|
|
||||||
if not exist "%~dp0\spider.jar\smali\com\github\catvod\" md "%~dp0\spider.jar\smali\com\github\catvod\"
|
if not exist "%~dp0\spider.jar\smali\com\github\catvod\" md "%~dp0\spider.jar\smali\com\github\catvod\"
|
||||||
|
|
@ -13,18 +14,16 @@ if not exist "%~dp0\spider.jar\smali\com\github\catvod\" md "%~dp0\spider.jar\sm
|
||||||
java -Dfile.encoding=utf-8 -jar "%~dp0\3rd\oss.jar" "%~dp0\Smali_classes"
|
java -Dfile.encoding=utf-8 -jar "%~dp0\3rd\oss.jar" "%~dp0\Smali_classes"
|
||||||
|
|
||||||
move "%~dp0\Smali_classes\com\github\catvod\spider" "%~dp0\spider.jar\smali\com\github\catvod\"
|
move "%~dp0\Smali_classes\com\github\catvod\spider" "%~dp0\spider.jar\smali\com\github\catvod\"
|
||||||
|
move "%~dp0\Smali_classes\com\github\catvod\parser" "%~dp0\spider.jar\smali\com\github\catvod\"
|
||||||
move "%~dp0\Smali_classes\com\github\catvod\js" "%~dp0\spider.jar\smali\com\github\catvod\"
|
move "%~dp0\Smali_classes\com\github\catvod\js" "%~dp0\spider.jar\smali\com\github\catvod\"
|
||||||
|
|
||||||
rd /s/q "%~dp0\Smali_classes"
|
|
||||||
|
|
||||||
java -jar "%~dp0\3rd\apktool_2.4.1.jar" b "%~dp0\spider.jar" -c
|
java -jar "%~dp0\3rd\apktool_2.4.1.jar" b "%~dp0\spider.jar" -c
|
||||||
|
|
||||||
move "%~dp0\spider.jar\dist\dex.jar" "%~dp0\custom_spider.jar"
|
move "%~dp0\spider.jar\dist\dex.jar" "%~dp0\custom_spider.jar"
|
||||||
|
|
||||||
certUtil -hashfile "%~dp0\custom_spider.jar" MD5 | find /i /v "md5" | find /i /v "certutil" > "%~dp0\custom_spider.jar.md5"
|
certUtil -hashfile "%~dp0\custom_spider.jar" MD5 | find /i /v "md5" | find /i /v "certutil" > "%~dp0\custom_spider.jar.md5"
|
||||||
|
|
||||||
rd /s/q "%~dp0\spider.jar\smali\com\github\catvod\spider"
|
|
||||||
rd /s/q "%~dp0\spider.jar\smali\com\github\catvod\js"
|
|
||||||
|
|
||||||
rd /s/q "%~dp0\spider.jar\build"
|
rd /s/q "%~dp0\spider.jar\build"
|
||||||
|
rd /s/q "%~dp0\spider.jar\smali"
|
||||||
rd /s/q "%~dp0\spider.jar\dist"
|
rd /s/q "%~dp0\spider.jar\dist"
|
||||||
|
rd /s/q "%~dp0\Smali_classes"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue