mirror of https://github.com/FongMi/TV.git
parent
5db8fd1a41
commit
8e8ef7f12b
@ -0,0 +1,23 @@ |
||||
package com.fongmi.android.tv.api; |
||||
|
||||
import com.github.catvod.crawler.Spider; |
||||
|
||||
import java.util.concurrent.ConcurrentHashMap; |
||||
|
||||
public class JsLoader { |
||||
|
||||
private final ConcurrentHashMap<String, Spider> spiders; |
||||
|
||||
public JsLoader() { |
||||
spiders = new ConcurrentHashMap<>(); |
||||
init(); |
||||
} |
||||
|
||||
public void clear() { |
||||
this.spiders.clear(); |
||||
} |
||||
|
||||
private void init() { |
||||
|
||||
} |
||||
} |
||||
@ -0,0 +1 @@ |
||||
/build |
||||
@ -0,0 +1,17 @@ |
||||
plugins { |
||||
id 'com.android.library' |
||||
} |
||||
|
||||
android { |
||||
compileSdk 33 |
||||
|
||||
defaultConfig { |
||||
minSdk 21 |
||||
targetSdk 33 |
||||
ndk { abiFilters "armeabi-v7a" } |
||||
} |
||||
} |
||||
|
||||
dependencies { |
||||
|
||||
} |
||||
@ -0,0 +1,2 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<manifest package="com.hiker.drpy" /> |
||||
Loading…
Reference in new issue