Hongdou TV Android (Android Studio) film and TV project source code, a VOD/live TV TV artifact, a must-have for home!

Today's home TVs are basically smart TVs, but they are not as practical as before. You have to turn on and play advertisements, and you have to turn on various VIP members to watch TV. A good tall smart TV has to be turned into a mentally handicapped TV, which is very speechless. Presumably many friends have suffered greatly from it. Today, I will share with you a TV software source code that can watch all types of TV without any advertisements and no need to be a member. Share it with some friends who like to toss, so that you can instantly have a TV software of your own. The name and icon are arbitrary. Change and express your personality, whether it is for your own use or for others.

 If you don’t like tossing around and find it troublesome to compile, and you just want an APK installation package to watch TV, you can go to the official account of [Shilin Studio] and reply to “tv001” and “tv002” to get the compiled installation package. Install it, open it and use it.

Let's preview the interface after installation:

The home page has already been displayed, and then the following list page will be displayed

 Look at the content page

 Play page display

 Search page display

  live show

 The other pages will not be displayed one by one, let’s explore by yourself, and then enter the topic. The source code of this APP is based on TVBox, and a series of BUGs have been repaired on the original basis, and the code has been beautified and optimized. Therefore, in addition to the built-in special playback source, the playback source of tvbox is also supported, which increases the scalability.

First download the source code of the Hongdou TV Android (Android Studio) film and TV project, and you can go to the official account of [ Shilin Studio] and reply " hdtv " to get it.

 In order to make it easier for everyone to compile and use, this set of source code does not delete the supporting modules required by the source code. After you get the source code, you can directly import it into Android Studio. According to your needs, modify the APP name, icon, and built-in playback source. Background... After the modification is completed, build and generate the APK installation package, which can be installed and used!

It should be noted that for the official release, you need to generate a key file first, and then import it when generating the APK package. The method of generating the key is also described here, and it is also very simple. Call the CMD command in the Windows environment, and run it on the command line Enter the following code in the :

keytool -genkey -alias shilinkey -keyalg RSA -keysize 2048 -validity 36500 -keystore D:\com.shilinstudio.hongdouTV.keystore

Among them, shilinkey is an alias, and D:\com.shilinstudio.hongdouTV.keystore is the location and name of saving the key file when it is generated. It should also be noted that generating the key requires the support of the Java environment. If it is not installed or installed successfully, the above code cannot be run correctly. You can enter the following command in CMD to check whether Java is installed in your system environment:

java -version

If the version number of java appears, it means that it has been installed or installed successfully. If an error is reported, it means that java has not been installed or has not been installed successfully.

Guess you like

Origin blog.csdn.net/YUMENG_FLY/article/details/130946975