mirror of https://github.com/FongMi/TV.git
parent
82d3bc17d2
commit
ff7c154357
@ -1,2 +0,0 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<manifest package="com.hiker.drpy" /> |
||||
@ -0,0 +1,2 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<manifest package="com.fongmi.android.tv.quickjs" /> |
||||
@ -1,4 +1,4 @@ |
||||
package com.hiker.drpy.bean; |
||||
package com.fongmi.quickjs.bean; |
||||
|
||||
import org.jsoup.Jsoup; |
||||
import org.jsoup.nodes.Document; |
||||
@ -1,4 +1,4 @@ |
||||
package com.hiker.drpy.bean; |
||||
package com.fongmi.quickjs.bean; |
||||
|
||||
import java.util.ArrayList; |
||||
import java.util.Arrays; |
||||
@ -1,4 +1,4 @@ |
||||
package com.hiker.drpy.bean; |
||||
package com.fongmi.quickjs.bean; |
||||
|
||||
import android.text.TextUtils; |
||||
|
||||
@ -1,4 +1,4 @@ |
||||
package com.hiker.drpy.bean; |
||||
package com.fongmi.quickjs.bean; |
||||
|
||||
import android.text.TextUtils; |
||||
|
||||
@ -1,13 +1,14 @@ |
||||
package com.hiker.drpy; |
||||
package com.fongmi.quickjs.crawler; |
||||
|
||||
import android.content.Context; |
||||
import android.util.Base64; |
||||
|
||||
import com.fongmi.quickjs.bean.Res; |
||||
import com.fongmi.quickjs.method.Function; |
||||
import com.fongmi.quickjs.method.Global; |
||||
import com.fongmi.quickjs.method.Local; |
||||
import com.fongmi.quickjs.utils.Module; |
||||
import com.github.catvod.utils.Json; |
||||
import com.hiker.drpy.bean.Res; |
||||
import com.hiker.drpy.method.Function; |
||||
import com.hiker.drpy.method.Global; |
||||
import com.hiker.drpy.method.Local; |
||||
import com.whl.quickjs.android.QuickJSLoader; |
||||
import com.whl.quickjs.wrapper.JSArray; |
||||
import com.whl.quickjs.wrapper.JSMethod; |
||||
@ -1,4 +1,4 @@ |
||||
package com.hiker.drpy.method; |
||||
package com.fongmi.quickjs.method; |
||||
|
||||
import com.whl.quickjs.wrapper.JSCallFunction; |
||||
import com.whl.quickjs.wrapper.JSFunction; |
||||
@ -1,15 +1,15 @@ |
||||
package com.hiker.drpy.method; |
||||
package com.fongmi.quickjs.method; |
||||
|
||||
import android.text.TextUtils; |
||||
import android.util.Base64; |
||||
|
||||
import androidx.annotation.Keep; |
||||
|
||||
import com.fongmi.quickjs.bean.Req; |
||||
import com.fongmi.quickjs.utils.Parser; |
||||
import com.fongmi.quickjs.utils.Proxy; |
||||
import com.github.catvod.net.OkHttp; |
||||
import com.google.gson.Gson; |
||||
import com.hiker.drpy.Parser; |
||||
import com.hiker.drpy.Proxy; |
||||
import com.hiker.drpy.bean.Req; |
||||
import com.whl.quickjs.wrapper.JSArray; |
||||
import com.whl.quickjs.wrapper.JSFunction; |
||||
import com.whl.quickjs.wrapper.JSMethod; |
||||
@ -1,8 +1,8 @@ |
||||
package com.hiker.drpy.method; |
||||
package com.fongmi.quickjs.method; |
||||
|
||||
import androidx.annotation.Keep; |
||||
|
||||
import com.hiker.drpy.Prefers; |
||||
import com.fongmi.quickjs.utils.Prefers; |
||||
import com.whl.quickjs.wrapper.JSMethod; |
||||
|
||||
public class Local { |
||||
@ -1,4 +1,4 @@ |
||||
package com.hiker.drpy; |
||||
package com.fongmi.quickjs.utils; |
||||
|
||||
import android.content.Context; |
||||
import android.net.Uri; |
||||
@ -1,11 +1,11 @@ |
||||
package com.hiker.drpy; |
||||
package com.fongmi.quickjs.utils; |
||||
|
||||
import android.text.TextUtils; |
||||
|
||||
import androidx.media3.common.util.UriUtil; |
||||
|
||||
import com.hiker.drpy.bean.Cache; |
||||
import com.hiker.drpy.bean.Info; |
||||
import com.fongmi.quickjs.bean.Cache; |
||||
import com.fongmi.quickjs.bean.Info; |
||||
|
||||
import org.jsoup.nodes.Document; |
||||
import org.jsoup.nodes.Element; |
||||
@ -1,4 +1,4 @@ |
||||
package com.hiker.drpy; |
||||
package com.fongmi.quickjs.utils; |
||||
|
||||
import android.content.Context; |
||||
import android.content.SharedPreferences; |
||||
@ -1,8 +1,8 @@ |
||||
package com.hiker.drpy; |
||||
package com.fongmi.quickjs.utils; |
||||
|
||||
public class Proxy { |
||||
|
||||
private static int port; |
||||
private static int port = 9978; |
||||
|
||||
public static void set(int port) { |
||||
Proxy.port = port; |
||||
Loading…
Reference in new issue