Share My Creation Live sport TV

Watch your favorite sports channels live on your android devices.

All popular sport channels are available in this app

MX player is needed for this app !!

Be sure to install it.


http://m.kraakiesoft.store.aptoide....iesoft.sportstv/3/10035253/Live tv Sports#_=_

11717376_122254301444121_55268528960944306_o (1).jpg
 
Last edited:

NJDude

Expert
Licensed User
Longtime User
A few observations:

1- Your icon, better change it, hard to tell what it is, look HERE.

2- You better use the designer scripts, the layouts are not scaling properly on large screen phones or tablets, see HERE, also that "smart size" AdMob takes too much space, it makes the whole app to look like an ad.

3- Instead of placing a barely noticeable message saying "Mx Player needed!" you should make sure the required app is installed, if not, then instruct the user to download it (there are several examples on the forums to do that) having the user to see THIS message makes your app look bad and it's an invitation to "1 Star Ninjas" to have a fiesta.

4- Give the app some color and make it more attractive.
 

Ricardo Bunschoten

Active Member
Licensed User
Longtime User
Thnx for the advice

I tried to figure out to use the standard video player with videoview lib but dont know the package name of the default video player in android
 

NJDude

Expert
Licensed User
Longtime User
You could use an intent, like this:
B4X:
 Private i As Intent

i.Initialize(i.ACTION_VIEW, "<LINK_TO_VIDEO>")
i.SetType("video/*")

StartActivity(i)

If the user has more than 1 player installed a list will popup to choose the player.
 

Ricardo Bunschoten

Active Member
Licensed User
Longtime User
Thnx verry helpfull will add all this info in the next update
You could use an intent, like this:
B4X:
Private i As Intent

i.Initialize(i.ACTION_VIEW, "<LINK_TO_VIDEO>")
i.SetType("video/*")

StartActivity(i)

If the user has more than 1 player installed a list will popup to choose the player.
 

susu

Well-Known Member
Licensed User
Longtime User
Becareful with video/streaming app. Google used to kill your app when there's a report or when you get some downloads.
 
Top