├── README.md ├── Ultimate IPTV Plugin-Addon V3- (OLD) ├── README.md ├── app │ ├── app.iml │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── iptvLoader │ │ │ └── example │ │ │ ├── classic.java │ │ │ ├── classicEPG.java │ │ │ ├── classicXtream.java │ │ │ ├── tvstyle.java │ │ │ ├── tvstyleEPG.java │ │ │ └── tvstyleXtreme.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ ├── ic_launcher.png │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ ├── values-v11 │ │ └── styles.xml │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── iptv.example-master.iml └── settings.gradle └── Ultimate IPTV Plugin-Addon V4+ ├── IPTV m3u Plugin-Addon Example.iml ├── README.md ├── app ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── iptvLoader │ │ └── example │ │ └── startmeup.java │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ ├── ic_launcher.png │ └── icon.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── values-v11 │ └── styles.xml │ └── values │ ├── strings.xml │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties └── settings.gradle /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/README.md -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V3- (OLD)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V3- (OLD)/README.md -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V3- (OLD)/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V3- (OLD)/app/app.iml -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V3- (OLD)/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V3- (OLD)/app/build.gradle -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/java/com/iptvLoader/example/classic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/java/com/iptvLoader/example/classic.java -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/java/com/iptvLoader/example/classicEPG.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/java/com/iptvLoader/example/classicEPG.java -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/java/com/iptvLoader/example/classicXtream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/java/com/iptvLoader/example/classicXtream.java -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/java/com/iptvLoader/example/tvstyle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/java/com/iptvLoader/example/tvstyle.java -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/java/com/iptvLoader/example/tvstyleEPG.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/java/com/iptvLoader/example/tvstyleEPG.java -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/java/com/iptvLoader/example/tvstyleXtreme.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/java/com/iptvLoader/example/tvstyleXtreme.java -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/res/values-v11/styles.xml -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V3- (OLD)/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V3- (OLD)/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V3- (OLD)/build.gradle -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V3- (OLD)/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V3- (OLD)/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V3- (OLD)/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V3- (OLD)/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V3- (OLD)/iptv.example-master.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V3- (OLD)/iptv.example-master.iml -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V3- (OLD)/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V4+/IPTV m3u Plugin-Addon Example.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V4+/IPTV m3u Plugin-Addon Example.iml -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V4+/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V4+/README.md -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V4+/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V4+/app/build.gradle -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V4+/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V4+/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V4+/app/src/main/java/com/iptvLoader/example/startmeup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V4+/app/src/main/java/com/iptvLoader/example/startmeup.java -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V4+/app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V4+/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V4+/app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V4+/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V4+/app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V4+/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V4+/app/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V4+/app/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V4+/app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V4+/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V4+/app/src/main/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V4+/app/src/main/res/values-v11/styles.xml -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V4+/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V4+/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V4+/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V4+/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V4+/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V4+/build.gradle -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V4+/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V4+/gradle.properties -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V4+/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V4+/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V4+/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatdeveloping/m3u-Loader-Plugin/HEAD/Ultimate IPTV Plugin-Addon V4+/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Ultimate IPTV Plugin-Addon V4+/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------