Welcome to World of IPTV

Join us now to get access to all our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, and so, so much more. It's also quick and totally free, so what are you waiting for?

Forum Rules

Our Rules: Read to avoid getting banned!

Advertising

Introduce Yourself to the World with Us!

Resource Database

Find the newest resources around IPTV!

Account upgrade

Upgrade your account to unlock more benefits!

XCIPTV 3.2.2 LIVE TV only

I can also explain the process to change the notification bell text, if anyone is interested in having a custom notification.
Yes, I would like to know how the bell works, it's fantastic to finally demystify that option :) I also think for a long time how to set it to UPDATE CONTENT automatically once a day at a given time
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
I can also explain the process to change the notification bell text, if anyone is interested in having a custom notification.
you should just create a guide with it all in one place..that would go down a storm here bro..keep up the good work and thak you sooo much
 
I agree. Very handy. Been trying to figure this out for a while. Great work.
Lol, XCIPTV is my b17ch.
Yes, I would like to know how the bell works, it's fantastic to finally demystify that option :) I also think for a long time how to set it to UPDATE CONTENT automatically once a day at a given time

The file is CategoriesActivity$f0.smali. Search for the word Important, and you'll get a match in that file. Starting on line 287 and ending on line 294, the code looks like this...


==========
if-eqz p1, :cond_5a

.line 15
iget-object p1, p0, Lcom/nathnetwork/xciptv/CategoriesActivity$f0;->a:Lcom/nathnetwork/xciptv/CategoriesActivity;

const-string v0, "Important Message!\n"

invoke-static {v0}, Lb/a/a/a/a;->a(Ljava/lang/String;)Ljava/lang/StringBuilder;
==========


I change the code to look like this. Notice that the first conditional jump, to :cond_5a has been deleted.


==========
.line 15
iget-object p1, p0, Lcom/nathnetwork/xciptv/CategoriesActivity$f0;->a:Lcom/nathnetwork/xciptv/CategoriesActivity;

const-string v0, "Put your desired notification text here. Use \n for multiple text lines."

invoke-static {v0}, Lb/a/a/a/a;->a(Ljava/lang/String;)Ljava/lang/StringBuilder;
==========

I hope this helps!
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
Thanks @Psychloan420 genius, big thanks. Do you know if it is possible to add the UPDATE CONTENT auto command somewhere?

I'm not sure what you mean... Background Service Update Contents is enabled by default in v3.2.2. Are you trying to edit the time between auto updates?
 
I'm not sure what you mean... Background Service Update Contents is enabled by default in v3.2.2. Are you trying to edit the time between auto updates?
When providers add new movies, series, TV channels ... a subscriber has to manually click the UPDATE CONTENTS button to receive this new content. Is it possible to automatically enable content updates, eg once a day during the night?
 
When providers add new movies, series, TV channels ... a subscriber has to manually click the UPDATE CONTENTS button to receive this new content. Is it possible to automatically enable content updates, eg once a day during the night?

It should be enabled by default, in Other Settings. It's called Background Service Update Contents. I believe it's set to update every 24 hours by default.
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
SettingsMenuActivity$a.smali is the file. Search for 0x7f110104 and you'll find a match in that file. Starting on line 2679 and ending on line 2707, the code looks like this...


==========
new-instance v0, Ljava/lang/StringBuilder;

invoke-direct {v0}, Ljava/lang/StringBuilder;-><init>()V

iget-object v2, v1, Lcom/nathnetwork/xciptv/SettingsMenuActivity$a;->b:Lcom/nathnetwork/xciptv/SettingsMenuActivity;

iget-object v2, v2, Lcom/nathnetwork/xciptv/SettingsMenuActivity;->b:Landroid/content/SharedPreferences;

const-string v3, "support_email"

const/4 v4, 0x0

const-string v5, "\n"

invoke-static {v2, v3, v4, v0, v5}, Lb/a/a/a/a;->a(Landroid/content/SharedPreferences;Ljava/lang/String;Ljava/lang/String;Ljava/lang/StringBuilder;Ljava/lang/String;)V

iget-object v2, v1, Lcom/nathnetwork/xciptv/SettingsMenuActivity$a;->b:Lcom/nathnetwork/xciptv/SettingsMenuActivity;

iget-object v2, v2, Lcom/nathnetwork/xciptv/SettingsMenuActivity;->b:Landroid/content/SharedPreferences;

const-string v3, "support_phone"

invoke-interface {v2, v3, v4}, Landroid/content/SharedPreferences;->getString(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;

move-result-object v2

invoke-virtual {v0, v2}, Ljava/lang/StringBuilder;->append(Ljava/lang/String;)Ljava/lang/StringBuilder;

invoke-virtual {v0}, Ljava/lang/StringBuilder;->toString()Ljava/lang/String;
==========


In order to change the text, I change the code to look like this...


==========
new-instance v0, Ljava/lang/StringBuilder;

invoke-direct {v0}, Ljava/lang/StringBuilder;-><init>()V

const-string v2, "Put desired text here. Use \n to have multiple lines of text."

invoke-virtual {v0, v2}, Ljava/lang/StringBuilder;->append(Ljava/lang/String;)Ljava/lang/StringBuilder;

invoke-virtual {v0}, Ljava/lang/StringBuilder;->toString()Ljava/lang/String;
==========

I hope this helps!

is this also working with 3.2.1? tried it but couldn't get it to work.. i know i've entered something wrong somewhere but cant for the life of me see what my mistake is lol..

if someone would be so good as to send me the updated smali. so i can compare that would be very much appreciated.
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
Hi.Kaunas what language do you want your APK to be?
Hi.
a128c201d7.png
 
I suggest definitely the safest way to do this and make it work, there are other ways but I have not used them. In my opinion, the best thing to do is edit the source itself. It's a manual translation. Open STRINGS.XML> values / strings (stings.xml) and values-lt / strings (stings.xml lt). Copy the sentence from il to the original string. For example>
"abc_action_bar_home_description"> Navigate home </string> peast Eiti pagrindin puslapį line by line and save as. This method of translation may not take you longer than 1 hour, but you are sure that it works without problems.
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
shape1
shape2
shape3
shape4
shape5
shape6
Back
Top