DOWNLOAD IBO TMDB

ak77pro

Member
VIP Member
Joined
Jan 10, 2022
Messages
50
Awards
2
Offline
Thanks for all the help posted .
After reading every post muti times .
I figured out .
Thanks for the share ,cheers everyone
 

G-man

Well-known member
Joined
Apr 16, 2021
Messages
1,946
Awards
4
Offline
quick question in previous versions i have managed to remove the QR code image but for the life of me i cant find it in 3.8 or forgot how to remove it I cant even find the "scan qr to add playlist" text ?
anyone done this or knows how to plaese for future reference.
Screenshot 2024-02-17 134443.jpg
 

TheOne

Well-known member
VIP Member
Top Poster Of Month
Joined
Aug 21, 2022
Messages
364
Awards
3
Offline
How did you manage it?
 

atomant247

Active member
VIP Member
Joined
Apr 25, 2021
Messages
287
Awards
2
Offline
Simple solution would be to replace the qr image in drawable with a blank image of you wanted removed 😅 But the scan QR to add playlist is still the same in xml.
Or create a qr image and replace. Nice selling point to add buyers qr to their telegram, discord or website.
 

SamChapman

Active member
VIP Member
Joined
Jan 18, 2024
Messages
169
Awards
2
Offline
Or create a qr image and replace. Nice selling point to add buyers qr to their telegram, discord or website.
Personally i think the qr image is a waste of time. Even the one that can actually set up playlist with. How many customers are going to actually use it lol
 

G-man

Well-known member
Joined
Apr 16, 2021
Messages
1,946
Awards
4
Offline
nope could not find the text and i pulled it apart also the qr image i could not find
this is what displays the qr code but i searched for that and it does to show an xml or an image

Screenshot 2024-02-17 234446.jpg

Initially i thought it was this text but its not if you look at the image above
this is what confussed me it was jbetbet that explained if i set dimensions to zero for both they would be hidden , i dont know why but
that was how it is :)
also had to change a few little things like sdp to sp etc.

Screenshot 2024-02-17 234514.jpg
 
Last edited:

SideShow

New member
Joined
Apr 27, 2021
Messages
25
Offline
Great app and looks good with the tmdb backgrounds. Need info to change user agent.
 

SideShow

New member
Joined
Apr 27, 2021
Messages
25
Offline
Shows the server what name is connected by. Like with smarters having the option in the settings to change the user agent , so looking to hardcore it in.
 

SamChapman

Active member
VIP Member
Joined
Jan 18, 2024
Messages
169
Awards
2
Offline
nope could not find the text and i pulled it apart also the qr image i could not find
this is what displays the qr code but i searched for that and it does to show an xml or an image

View attachment 8825

Initially i thought it was this text but its not if you look at the image above
this is what confussed me it was jbetbet that explained if i set dimensions to zero for both they would be hidden , i dont know why but
that was how it is :)
also had to change a few little things like sdp to sp etc.

View attachment 8826
You can remove it without editing the dimensions. But yeh that is another way which will work.
 

G-man

Well-known member
Joined
Apr 16, 2021
Messages
1,946
Awards
4
Offline
You can remove it without editing the dimensions. But yeh that is another way which will work.
lol my point is i could not find it to remove it , iset visability to gone but still showed there is not an actual image to edit or remove
 

nowacx

Well-known member
Joined
May 28, 2021
Messages
340
Awards
4
Offline
nope could not find the text .... this is what displays the qr code but i searched for that and it does to show an xml or an image

View attachment 8825

usually with these edits there are several ways to achieve the same goal

example with the "scan qr to add playlist" text you ended up using 0 dimensions,..... you could just as easily..... set the textsize to 0, or ....set the text color to trans parent and either one would make the text "disappear" (id swap, dummy views, dex edits and several more ways would all achieve same goal too but that's an aside)

unless previously removed by someone else, the text "scan qr to add playlist" would typically/by default be in xml(and dex).... but 'simply/only' changing it in xml would have no effect as it uses dex to 'set the text' for that view

as standard/default, the item you highlighted i.e. (android:id="@id/str_scan_code") is actually what's 'partly responsible' for the "scan qr to add playlist" text but as you can see in your highlight it is an "id"(str_scan_code) of a textview and not an actual text..... which means if you change any of the 'attributes' of the textview(dimension, textsize, color etc) you'll see it affects the text shown in the app

on the dex level, the reference to the "id" can even be "directed" to display a different text(or nothing at all) which in effect changes/removes the "scan qr to add playlist" shown in the app for example in pic1 below, the text "scan qr to add playlist" is changed to now display "black mamba" just for kicks
pic1.jpg

as per the qrcode "image", it can easily be "removed" as @SamChapman rightly said by simply using a transparent/blank image,.... also using 0 dimensions on the "imageview" of the qr_code will remove it too

summary being... several ways to skin a cat😉
 

Attachments

  • pic1.jpg
    pic1.jpg
    97.7 KB · Views: 53
Last edited:

lucif3r

Well-known member
Joined
Jun 3, 2021
Messages
117
Awards
4
Offline
lol my point is i could not find it to remove it , iset visability to gone but still showed there is not an actual image to edit or remove
The qr image is in /res/drawable
 

G-man

Well-known member
Joined
Apr 16, 2021
Messages
1,946
Awards
4
Offline
The qr image is in /res/drawable
Screenshot 2024-02-18 120557.jpg
This is not the qr image being displayed i tried that first as anyone would do ,the point i was making is the QR image is not anywhere easily to be found , i totally decompiled the apk and did advanced searches for the image and the text and both did not show , i have hidden them by setting values to zeros but i still could not find either text or image location
 

G-man

Well-known member
Joined
Apr 16, 2021
Messages
1,946
Awards
4
Offline
usually with these edits there are several ways to achieve the same goal

example with the "scan qr to add playlist" text you ended up using 0 dimensions,..... you could just as easily..... set the textsize to 0, or ....set the text color to trans parent and either one would make the text "disappear" (id swap, dummy views, dex edits and several more ways would all achieve same goal too but that's an aside)

unless previously removed by someone else, the text "scan qr to add playlist" would typically/by default be in xml(and dex).... but 'simply/only' changing it in xml would have no effect as it uses dex to 'set the text' for that view

as standard/default, the item you highlighted i.e. (android:id="@id/str_scan_code") is actually what's 'partly responsible' for the "scan qr to add playlist" text but as you can see in your highlight it is an "id"(str_scan_code) of a textview and not an actual text..... which means if you change any of the 'attributes' of the textview(dimension, textsize, color etc) you'll see it affects the text shown in the app

on the dex level, the reference to the "id" can even be "directed" to display a different text(or nothing at all) which in effect changes/removes the "scan qr to add playlist" shown in the app for example in pic1 below, the text "scan qr to add playlist" is changed to now display "black mamba" just for kicks
View attachment 8829

as per the qrcode "image", it can easily be "removed" as @SamChapman rightly said by simply using a transparent/blank image,.... also using 0 dimensions on the "imageview" of the qr_code will remove it too

summary being... lot's of ways to skin a cat😉
where is the actual QR code stored in the app ? its not the same one that is in the res/drawable folder thats what i could not work out the location
 
Top