Update to 1.4.7

pull/137/head
FongMi 3 years ago
parent c9a1edfdb5
commit bd0104894d
  1. 8
      README.md
  2. 4
      app/build.gradle
  3. 2
      app/src/main/java/com/fongmi/android/tv/player/source/Force.java
  4. 0
      other/sample/live/offline.json
  5. 0
      other/sample/live/online.json
  6. 0
      other/sample/vod/offline.json
  7. 0
      other/sample/vod/online.json

@ -8,10 +8,10 @@ https://github.com/CatVodTVOfficial/CatVodTVJarLoader
[TV-Python](https://github.com/FongMi/TV/blob/main/release/leanback-python.apk?raw=true "TV-Python")
### Config Example
[Vod-Online](other/example/vod/online.json)
[Vod-Offline](other/example/vod/offline.json)
[Live-Online](other/example/live/online.json)
[Live-Offline](other/example/live/offline.json)
[Vod-Online](other/sample/vod/online.json)
[Vod-Offline](other/sample/vod/offline.json)
[Live-Online](other/sample/live/online.json)
[Live-Offline](other/sample/live/offline.json)
### Subtitle Format
In playerContent put "sub"

@ -10,8 +10,8 @@ android {
applicationId "com.fongmi.android.tv"
minSdk 21
targetSdk 33
versionCode 46
versionName "1.4.6"
versionCode 47
versionName "1.4.7"
ndk { abiFilters "armeabi-v7a" }
}

@ -38,7 +38,7 @@ public class Force {
private void check() throws Exception {
File file = FileUtil.getCacheFile("libmitv.so");
String url = Constant.getReleasePath("/other/so/libmitv.so");
String url = Constant.getReleasePath("/other/libmitv.so");
if (!file.exists()) FileUtil.write(file, OKHttp.newCall(url).execute().body().bytes());
}

Loading…
Cancel
Save