diff --git a/README.md b/README.md index 1b573a1a5..71fbae2a5 100644 --- a/README.md +++ b/README.md @@ -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" diff --git a/app/build.gradle b/app/build.gradle index 730b081ea..afaff752b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -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" } } diff --git a/app/src/main/java/com/fongmi/android/tv/player/source/Force.java b/app/src/main/java/com/fongmi/android/tv/player/source/Force.java index c7bc58c15..a86cb2d81 100644 --- a/app/src/main/java/com/fongmi/android/tv/player/source/Force.java +++ b/app/src/main/java/com/fongmi/android/tv/player/source/Force.java @@ -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()); } diff --git a/other/example/live/offline.json b/other/sample/live/offline.json similarity index 100% rename from other/example/live/offline.json rename to other/sample/live/offline.json diff --git a/other/example/live/online.json b/other/sample/live/online.json similarity index 100% rename from other/example/live/online.json rename to other/sample/live/online.json diff --git a/other/example/vod/offline.json b/other/sample/vod/offline.json similarity index 100% rename from other/example/vod/offline.json rename to other/sample/vod/offline.json diff --git a/other/example/vod/online.json b/other/sample/vod/online.json similarity index 100% rename from other/example/vod/online.json rename to other/sample/vod/online.json