Merge branch 'main' of https://github.com/FongMi/CatVodSpider
This commit is contained in:
commit
732ddbcbc0
|
|
@ -42,5 +42,6 @@ dependencies {
|
||||||
implementation 'com.google.code.gson:gson:2.8.6'
|
implementation 'com.google.code.gson:gson:2.8.6'
|
||||||
implementation 'cn.wanghaomiao:JsoupXpath:2.5.1'
|
implementation 'cn.wanghaomiao:JsoupXpath:2.5.1'
|
||||||
implementation 'com.google.zxing:core:3.3.0'
|
implementation 'com.google.zxing:core:3.3.0'
|
||||||
|
implementation 'com.hierynomus:smbj:0.11.5'
|
||||||
implementation 'org.jsoup:jsoup:1.15.3'
|
implementation 'org.jsoup:jsoup:1.15.3'
|
||||||
}
|
}
|
||||||
|
|
@ -20,19 +20,29 @@
|
||||||
-keep,allowobfuscation,allowshrinking class com.google.gson.reflect.TypeToken
|
-keep,allowobfuscation,allowshrinking class com.google.gson.reflect.TypeToken
|
||||||
-keep,allowobfuscation,allowshrinking class * extends com.google.gson.reflect.TypeToken
|
-keep,allowobfuscation,allowshrinking class * extends com.google.gson.reflect.TypeToken
|
||||||
|
|
||||||
# Cronet
|
|
||||||
-keep class org.chromium.net.** { *; }
|
|
||||||
-keep class com.google.net.cronet.** { *; }
|
|
||||||
|
|
||||||
# OkHttp
|
# OkHttp
|
||||||
-dontwarn okhttp3.**
|
-dontwarn okhttp3.**
|
||||||
-keep class okio.** { *; }
|
-keep class okio.** { *; }
|
||||||
-keep class okhttp3.** { *; }
|
-keep class okhttp3.** { *; }
|
||||||
|
|
||||||
|
# Cronet
|
||||||
|
-keep class org.chromium.net.** { *; }
|
||||||
|
-keep class com.google.net.cronet.** { *; }
|
||||||
|
|
||||||
|
# Jsoup
|
||||||
|
-keep class org.jsoup.**{ *; }
|
||||||
|
|
||||||
# Sardine
|
# Sardine
|
||||||
-keep class com.thegrizzlylabs.sardineandroid.** { *; }
|
-keep class com.thegrizzlylabs.sardineandroid.** { *; }
|
||||||
|
|
||||||
|
# Smbj
|
||||||
|
-keep class com.hierynomus.** { *; }
|
||||||
|
|
||||||
|
# XPath
|
||||||
|
-keep class org.seimicrawler.xpath.**{ *; }
|
||||||
|
|
||||||
# Zxing
|
# Zxing
|
||||||
|
-keep class com.google.zxing.** { *; }
|
||||||
-keepclassmembers enum * {
|
-keepclassmembers enum * {
|
||||||
public static **[] values();
|
public static **[] values();
|
||||||
public static ** valueOf(java.lang.String);
|
public static ** valueOf(java.lang.String);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue