XBMC Installer for FireTV for Windows (by Senaxx) - Fire TV Themes and Apps

This is a Windows application which simplifies the whole process of installing XBMC to the Amazon Fire TV. It was written by a fellow named Senaxx and is quite useful.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
DOWNLOAD LINK: http://rghost.net/54708228
INSTRUCTIONS: How-To Guide

Resolved- please ignore.

..

Do you have manual steps? I could write a universal installer in Java.
XBMC ANDROID said:
This is a Windows application which simplifies the whole process of installing XBMC to the Amazon Fire TV. It was written by a fellow named Senaxx and is quite useful.
DOWNLOAD LINK: http://rghost.net/54708228
INSTRUCTIONS: How-To Guide
Click to expand...
Click to collapse

Trauma_Hound said:
Do you have manual steps? I could write a universal installer in Java.
Click to expand...
Click to collapse
SET /P M=Type 1, 2, 3 or 4 then press ENTER:
IF %M%==1 GOTO INSTALL
IF %M%==2 GOTO AUTOPILOT
IF %M%==3 GOTO SURE
IF %M%==4 GOTO EOF
:INSTALL
powershell -Command read-host "Enter your Fire TV IP" ; > ip.txt & set /p ip=<ip.txt
start /b /wait adb kill-server
start /b /wait adb start-server
start /b /wait adb connect %ip%
start /b /wait adb install -r ./xbmc/xbmc-*-Gotham-armeabi-v7a.apk
GOTO START
:SURE
SET /P ANSWER1=Are you sure you want to uninstall? (yes/no)?
if /i {%ANSWER1%}=={yes} (goto :UNINSTALL)
if /i {%ANSWER1%}=={y} (goto :UNINSTALL)
if /i {%ANSWER1%}=={no} (goto MENU)
if /i {%ANSWER1%}=={n} (goto MENU)
:UNINSTALL
powershell -Command read-host "Enter your Fire TV IP" ; > ip.txt & set /p ip=<ip.txt
start /b /wait adb kill-server
start /b /wait adb start-server
start /b /wait adb connect %ip%
start /b /wait adb uninstall org.xbmc.xbmc
:AUTOPILOT
powershell -Command read-host "Enter your Fire TV IP" ; > ip.txt & set /p ip=<ip.txt
start /b /wait adb kill-server
start /b /wait adb start-server
start /b /wait adb connect %ip%
start /b /wait adb install -r ./other/Autopilot.apk
GOTO START
:MENU
cls
GOTO START
:EOF
exit

Download link appears to be dead. Is there a mirror anyone has up?

..

Ignore my ignorance.. but will this replace the Amazon interface? I love the FireTv.. I'm not new to rooting/android but this I am.. working with this type of device.. Looks very interesting.

Funny to see my little app I made in a quick few minutes. I noticed that the version I released didn't work with other versions then nightly versions. I had posted a updated version for it.. but since then didn't update it anymore.
I was working on a windows version but the Amazon FireTV Side App Installer by imtiajmeah made it obsolete.

the link is dead. is there a new link?

fiddystorms said:
the link is dead. is there a new link?
Click to expand...
Click to collapse
i see there is a link to a ZIP file above, it worked fine. thank you again for this BAT file. Simplified things greatly.

Error Message
Hi,
I'm trying to install XBMC on my Fire TV.
I'm trying using the app you developped but I have the following error.
...............................................SENAXX AMAZON FIRE TV XBMC INSTALLER...............................................
1 - Install / Upgrade XBMC
2 - Install Autopilot
3 - Uninstall XBMC
4 - Exit
Type 1, 2, 3 or 4 then press ENTER:1
Enter your Fire TV IP: 192.168.1.203
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
connected to 192.168.1.203:5555
1122 KB/s (58919272 bytes in 51.262s)
pkg: /data/local/tmp/xbmc-13.2-Gotham-armeabi-v7a.apk
Failure [INSTALL_FAILED_CONTAINER_ERROR]
..............................................
Do you have an idea why I have this kind of message ?
Thanks

can i ask why this tool now? we have been able to install xbmc for a long time via the FTV utility app and fireadb. Both install xbmc and then some. this tool seems very unnecessary. with that said thank you

This thread was started in April.
Sent from my SCH-I545 using Tapatalk

This thread should probably be closed since the author is no longer supporting the tool. You're better off using adbFire in the future.

Related

[MOD] [CM10] Enable USB Mass Storage !! instead of MTP !

to enable mass storage mode !
enter in terminal emulator the following !
Code:
su
setprop persist.sys.usb.config mass_storage
reboot
profit !!
press enter after each line !
after reboot when you plug in your phone usb mass storage should work !
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
This was a lifesaver. Worked perfect.
Sent from my LG-P930 using xda premium
I think maybe you'd want this:
Code:
su
setprop persist.sys.usb.config mass_storage,adb
reboot
And then to switch back to mtp:
Code:
su
setprop persist.sys.usb.config mtp,adb
reboot
But, I'm new to this. Do your commands as you have them now disable adb?
Malnilion said:
I think maybe you'd want this:
Code:
su
setprop persist.sys.usb.config mass_storage,adb
reboot
And then to switch back to mtp:
Code:
su
setprop persist.sys.usb.config mtp,adb
reboot
But, I'm new to this. Do your commands as you have them now disable adb?
Click to expand...
Click to collapse
it disables adb debugging only one time after first reboot !
after that you can go into developer options and enable debugging
aaki_rocker said:
it disables adb debugging only one time after first reboot !
after that you can go into developer options and enable debugging
Click to expand...
Click to collapse
I love you man. For some reason this is the only thing that managed to get adb working on my device.
Not working for me
smartyenrique said:
Not working for me
Click to expand...
Click to collapse
what is not working ?
adb or mass storage !
Doesn't seem to work for me...
I get "Connected as an installer" and when I goto those options, it brings me back to the MTP or PTP selection screen...
When "connected as an installer", I see two drives but cannot access them on the computer...
Tried CM10 JB Preview and now on ARANOIDANDROID v1.95... Both did the same thing even after full wipes...
Thank god for this. Lack of mass storage mode really was a deal breaker for me and I almost gave up.
Delete post
Not working for me, Latest CM10 with I9300...
Su giving admin privlages... the config has no error \ warning, and the reboot works, but still when connecting - connected as MTP
thank you so much buddy.
Mass storage mode is still very slowly in CM 10, just about 1MB/s. It's really a pain when copying large data
Wish I could hit the Thanks 100 times!
I have no idea why this isn't enabled by default!
This has been added to the latest CM10 nightly.
Settings > Storage > Menu > USB Computer Connection
Not for me
mattman86 said:
This has been added to the latest CM10 nightly.
Settings > Storage > Menu > USB Computer Connection
Click to expand...
Click to collapse
I have no menu option under storage. My ROM (i717) might need updated.
Posted message in wrong thread. I found USB settings.
Sent from my LG-P930 using xda app-developers app
Can't get ADB to work. =( Doesn't even show up in the device list.
perfect!!! thanks a lot
I updated my phone to maximus JB rom and the phone appears as MTP. I know what mass storage is, but can someone explain that MTP is? Cheers

Lg L Manager [Win] [Unix] [L3] [L3 II] [L5] [L7]

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
LG L Manager​
With Crazy Mode too​
Lg L Manager is your new Pc suite for your Lg L3, L3 II, L5 and L7!!​
Features
Code:
#Supported Os:
--> Windows (Xp, Vista, 7, 8.x)
--> Unix based os (Os X too)
--> Linux distros (Ubuntu, Debian, Suse, Fedora, Linux Mint, etc..)
#Common Fetures:
-->Backup & Restore
-->Adb Shell
-->Install roms (Not fully automatized due to wipe /data)
-->Install Gapps or any mod (automatizated)
-->Install apk
-->Import Camera photos
-->Push and Pull files
-->Crazy mode
#Device Specific
-->Full Unlock (Bootloader+Recovery+Root) [L5] [L7] [L3II -> WIP]
-->Full Unlock (Recovery+Root)
Sources
Sources: https://github.com/ionolinuxnoparty/Lg-L-Manager
Branches :
Master > Windows
Master-unix > Unix and Linux
Click to expand...
Click to collapse
Download
Windows
Unix / Linux
Click to expand...
Click to collapse
Bugs
-Windows > dunno what's working and what not cuz I own no windows PCs and I wrote it with no test
-Unix > Crazy mode will make you crazy [cannot fix this]
Check commits to see if I've fixed something
Click to expand...
Click to collapse
How to run
Unix / Linux : browse into the folder where you have to place files ( ~/Lg-LManager), and run
./Start.sh 0 [Select device manually]
./Start.sh 1 [Lg L3]
./Start.sh 2 [Lg L5]
./Start.sh 3 [Lg L7]
./Start.sh 4 [Lg L3 2]
Click to expand...
Click to collapse
Windows: execute start.bat
Dev notes
Full Unlock,
it was pretty easy, everyone used stupids toolkit that may work or not. Adb and fastboot are the most useful and powerful tools.
I've changed the order to unlock device that everyone used. Why first root, then recovery and then bootloader?? Do you need the keys to change a car engine? Nope, so it's the same thing for an android device. Fist I boot a recovery to get adb root (stock kernel doesn't allow it, but a recovery automatically give adb root acces even if phone is not rooted), then I'll push file to unlock bootloader to sdcard and then unlock it. After this I flash recovery, then flash any root package. Done! And it works with any rom.
Click to expand...
Click to collapse
About Lg L3 II,
apparently this device has no bootloader to imput fastboot commands needed for the full unlock, read notes inside bat file
Click to expand...
Click to collapse
About Lg L3,
this is the only device I own of the four I support... Now there's no recovery that allow both adb shell and sideload so I've to push every file to sdcard. When there will be a recovery where both adb shell and sideload are working I'll change a few lines of code and it will be OK.
Click to expand...
Click to collapse
About Crazy Mode,
it's made for crazy users that may brik their devices and make strange things with their pc. When crazy mode is enabled there's no way to quit it and it may lag your pc like hell (until reboot) so you won't be able to do anything because you're crazy and you may destroy something.
Click to expand...
Click to collapse
Seems so good!
Well I guess I need to run su before i execute it on unix because of the permission errors I get , it will work fine I guess
If you need any help or testing for Unix , message me on Hangouts

Help Mounting Remote Samba/CIFS Shares (persistent)

So basically I'm rooted and Busybox installed trying to use XBMCTORRENT and getting the unmounted shares error
So trying to mount my remote shares using this command while adb shell and su:
mount -o noperm,unc=\\\\192.168.0.21\\putsharenamehere,username=putusernamehere,password=putpasswordhere -t cifs none /mnt/obb/nas
I get this error ermission denied
Also tried a lot of apps like CifsManager and Mount Manager but none of those worked either.
Any help would be greatly appreciated.
username, not user name
/mnt/obb/nas exist? with which permission?
Kramar111 said:
username, not user name
/mnt/obb/nas exist? with which permission?
Click to expand...
Click to collapse
Oh yeah sorry about user_name that was just me posting the thread
/mnt/obb/nas was created previously for this purpose with 777
thanks for the quick reply btw
Just checked
Code:
adb shell su -c mount -o noperm,unc=\\\\192.168.1.1\\Media,username=123,password=12345 -t cifs none /mnt/obb/nas
All Ok
Kramar111 said:
Just checked
Code:
adb shell su -c mount -o noperm,unc=\\\\192.168.1.1\\Media,username=123,password=12345 -t cifs none /mnt/obb/nas
All Ok
Click to expand...
Click to collapse
OK so stupid question under username is my NAS user and password right???
THat username has access and rights for my nas folder so idk what's going on here really
I still get permission denied error
I double checked the folder inside the firetv for the permissions dont know what else to do damn
LastDeuS said:
OK so stupid question under username is my NAS user and password right???
Click to expand...
Click to collapse
Yes.
Can you make screenshot?
Kramar111 said:
Yes.
Can you make screenshot?
Click to expand...
Click to collapse
Suere here it goes
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Can you change (for testing purposes) username and password to something like 123?
Kramar111 said:
Can you change (for testing purposes) username and password to something like 123?
Click to expand...
Click to collapse
Man I was away for vacations so I couldn't test anymore but thanks that did the trick
I must be honest I'm so lazy I was waiting for someone to tell me to test a simpler user and pass so I would go ahead and create another user on my NAS
I like to think all systems now are beyond those simple problems but hey it's working now thanks again man!!!
Kramar111 said:
Can you change (for testing purposes) username and password to something like 123?
Click to expand...
Click to collapse
Now that we got that working
How can I make this script run each time I reboot the device
LastDeuS said:
Now that we got that working
How can I make this script run each time I reboot the device
Click to expand...
Click to collapse
Don't know
For now my device is bricked (hope temporary) (bueller-51.1.4.1_514013920-rooted + reinstall Xposed framework)
Kramar111 said:
Don't know
For now my device is bricked (hope temporary) (bueller-51.1.4.1_514013920-rooted + reinstall Xposed framework)
Click to expand...
Click to collapse
Oh man sorry to hear that I'm thinking I can use some sort of script app to run this command each time I turn on the FireTV
LastDeuS said:
Oh man sorry to hear that I'm thinking I can use some sort of script app to run this command each time I turn on the FireTV
Click to expand...
Click to collapse
My Fire TV is restored now!
Thanks to rbox
But no time to try with script

How to uninstall/reinstall Settings Extra Apps in W10M

Sometimes those extra apps behave oddly and a reinstallation is required. Here is a method:
- install WinAppDeployCmd (can be downloaded from WikiSend WinAppDeploy-x86_en-us.msi.zip, more info Install Universal Windows Apps with the WinAppDeployCmd tool https://msdn.microsoft.com/en-us/library/mt203806.aspx)
- open Command Prompt (Cmd) as admin, change directory to
Code:
C:\Program Files (x86)\Windows Kits\10\bin\x86
- use
Code:
WinAppDeployCmd uninstall -package <name> -ip <address> -pin <p>
to remove the following packages
Display
Code:
b08997ca-60ab-4dce-b088-f92e9c7994f3_47810.15531.36284.64166_neutral__dtamgpysk9qmw
Gestures & Touch
Code:
NokiaCorporation.Gesturestouch_3.3.20.0_arm__6d0q6r3z979nw
Lumia motion data
Code:
NokiaCorporation.motiondata_2.1.192.0_arm__6d0q6r3z979nw
Equaliser
Code:
NokiaCorporation.Equaliser_3.0.155.0_arm__6d0q6r3z979nw
Rate Your Device
Code:
NokiaCorporation.Rateyourdevice_3.0.92.0_arm__6d0q6r3z979nw
Gadgets/Device hub
Code:
NokiaCorporation.DeviceHub_3.7.4.1_arm__6d0q6r3z979nw
Extras & info
Code:
2377fe1b-c10f-47da-92f3-fc517345a3c0_51122.20166.24600.51992_neutral__erv09pjf23e2a
Example: to uninstall Rate Your Device the command should be something like this
Code:
WinAppDeployCmd uninstall -package aec3bfad-e38c-4994-9c32-50bd030730ec_41833.38366.13087.29407_neutral__ax1bptaybe3da -ip 192.1.1.1 -pin 123456
where 192.1.1.1 should be your phone ip adress connected to the same Wi-Fi as the computer; and pin is the 6 character string generated from phone's Settings - Security - Developers - Pair. The pin is required only the fisrt time.
To reinstall the apps, download them from store
Display http://www.windowsphone.com/s?appid=b08997ca-60ab-4dce-b088-f92e9c7994f3
Gestures & Touch http://www.windowsphone.com/s?appid=bbc57c87-46af-4c2c-824e-ac8104cceb38
Lumia motion data http://www.windowsphone.com/s?appid=8fc25fd2-4e2e-4873-be44-20e57f6ec52b
Equaliser http://www.windowsphone.com/s?appid=373cb76e-7f6c-45aa-8633-b00e85c73261
Rate Your Device http://www.windowsphone.com/s?appid=aec3bfad-e38c-4994-9c32-50bd030730ec
Gadgets / Device hub http://www.windowsphone.com/s?appid=2fa58039-a6ea-4421-b5c6-9ffac0c3ec3d
Extras & info http://windowsphone.com/s?appId=2377fe1b-c10f-47da-92f3-fc517345a3c0
Tested on Windows 10 & Windows 10 Mobile 1511.
PS. I'm still looking for a similar way to uninstall/delete pre-installed apps on W10M. Any suggestion is welcomed.
Informative ?
Have you tried uninstalling the sysapps in your examples from Storage ➡ This Device ➡ Apps and games. It has worked for me.
What apps are you trying to uninstall?
winphouser said:
Informative
Have you tried uninstalling the sysapps in your examples from Storage This Device Apps and games. It has worked for me.What apps are you trying to uninstall?
Click to expand...
Click to collapse
No, it seems you can't uninstall Weather or Windows Feedback (they must be essential for the OS), but you can move or uninstall an instance of Phone for some reason.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
when I download the file from the link I get a zip file that cannot be opened without 3rd party archiver. in the zip file I get a folder called "turin brakes for molly"?
edit: okay now I got the files through the ms website, and i got the following apps:
Code:
Microsoft.Media.PlayReadyClient.Phone.2_2.10.2077.1_arm__8wekyb3d8bbwe
Microsoft.VCLibs.120.00.Phone_12.0.30113.0_arm__8wekyb3d8bbwe
Microsoft.WindowsPhoneFileProvider_1.0.12328.0_arm__8wekyb3d8bbwe
NokiaCorporation.DeviceHub_4.2.170.0_arm__6d0q6r3z979nw
Microsoft.SkypeApp_2.31.0.9_arm__kzf8qxf38zg5c
5319275A.WhatsApp_2.12.226.0_arm__cv1g1gvanyjgm
Facebook.317180B0BB486_11.0.1.0_arm__8xx8rvfyw5nnt
USTWOSTUDIOLIMITED.MonumentValley_2.3.0.0_arm__x66ewb4nq42ba
Microsoft.NET.Native.Framework.1.0_1.0.22929.0_arm__8wekyb3d8bbwe
Microsoft.NET.Native.Framework.1.1_1.0.23115.0_arm__8wekyb3d8bbwe
Microsoft.NET.Native.Runtime.1.0_1.0.22929.0_arm__8wekyb3d8bbwe
Microsoft.VCLibs.140.00_14.0.22929.0_arm__8wekyb3d8bbwe
Microsoft.Windows.Cortana_1.6.1.320_neutral_neutral_cw5n1h2txyewy
Microsoft.DevicesFlow_1.0.13070.63_arm__8wekyb3d8bbwe
Microsoft.LockApp_10.0.10586.63_neutral__cw5n1h2txyewy
Microsoft.MicrosoftEdge_25.10586.63.0_arm__8wekyb3d8bbwe
906BEEDA-B7E6-4DDC-BA8D-AD5031223EF9_1.0.13070.63_arm__8wekyb3d8bbwe
Microsoft.PrintDialog_1.0.13070.63_arm__8wekyb3d8bbwe
Windows.PurchaseDialog_6.2.0.0_neutral_neutral_cw5n1h2txyewy
2a4e62d8-8809-4787-89f8-69d0f01654fb_1.0.13070.63_arm__8wekyb3d8bbwe
Microsoft.AccountsControl_10.0.10586.63_neutral__cw5n1h2txyewy
Microsoft.Windows.AssignedAccessLockApp_1000.10586.63.0_neutral_neutral_cw5n1h2txyewy
Microsoft.BioEnrollment_10.0.10586.63_neutral__cw5n1h2txyewy
Microsoft.CloudExperienceHost_1000.10586.63.0_neutral_neutral_8wekyb3d8bbwe
Microsoft.WindowsFeedback_1.0.13070.63_arm__8wekyb3d8bbwe
c5e2524a-ea46-4f67-841f-6a9465d9d515_10.0.10586.63_neutral_neutral_cw5n1h2txyewy
Microsoft.AAD.BrokerPlugin_1000.10586.63.0_arm__8wekyb3d8bbwe
Microsoft.Tonepicker_1.0.13070.63_arm__8wekyb3d8bbwe
Windows.ContactSupport_10.0.10586.63_neutral_neutral_cw5n1h2txyewy
Microsoft.XboxIdentityProvider_1000.10586.63.0_neutral_neutral_cw5n1h2txyewy
Microsoft.NET.Native.Runtime.1.1_1.1.23406.0_arm__8wekyb3d8bbwe
Microsoft.MicrosoftWallet_1.1.15271.0_arm__8wekyb3d8bbwe
Microsoft.People_10.0.3451.0_arm__8wekyb3d8bbwe
NokiaCorporation.Equaliser_3.0.155.0_arm__6d0q6r3z979nw
NokiaCorporation.Gesturestouch_3.3.20.0_arm__6d0q6r3z979nw
Microsoft.NET.Native.Framework.1.2_1.2.23231.0_arm__8wekyb3d8bbwe
59750RykenApps.435307C335C44_2.5.13.0_arm__zd92nzxdcatqw
Microsoft.CommsPhone_2.12.14001.0_arm__8wekyb3d8bbwe
Microsoft.MSPodcast_1.2.15156.0_arm__8wekyb3d8bbwe
NokiaCorporation.Rateyourdevice_3.0.95.0_arm__6d0q6r3z979nw
microsoft.windowscommunicationsapps_17.6525.42272.0_arm__8wekyb3d8bbwe
Microsoft.WindowsSoundRecorder_10.1512.21120.0_arm__8wekyb3d8bbwe
NokiaCorporation.motiondata_2.1.192.0_arm__6d0q6r3z979nw
9E2F88E3.Twitter_3.2.3.0_arm__wgeqdkkx372wm
NokiaCorporation.glancescreen_4.1.146.0_arm__6d0q6r3z979nw
Microsoft.ZuneVideo_3.6.15772.0_arm__8wekyb3d8bbwe
Microsoft.WindowsAlarms_10.1512.58020.0_arm__8wekyb3d8bbwe
Microsoft.ZuneMusic_3.6.15802.0_arm__8wekyb3d8bbwe
Microsoft.WindowsCamera_2016.107.11.0_arm__8wekyb3d8bbwe
Microsoft.XboxApp_11.13.6008.0_arm__8wekyb3d8bbwe
Microsoft.Windows.Photos_15.1208.10502.0_arm__8wekyb3d8bbwe
f2930ca1-b656-45ce-80cf-c06fc662633d_1.0.0.0_arm__c14bspf40ga5e
Microsoft.MSFacebook_10.2.1.0_arm__8wekyb3d8bbwe
Microsoft.Getstarted_2.6.12.0_arm__8wekyb3d8bbwe
Microsoft.Upprv_1.3.233.2_arm__8wekyb3d8bbwe
Microsoft.BlockandFilterglobal_10.1505.13502.0_arm__8wekyb3d8bbwe
Microsoft.BingNews_4.7.119.0_arm__8wekyb3d8bbwe
Microsoft.BingWeather_4.7.119.0_arm__8wekyb3d8bbwe
NokiaCorporation.Networkservices_3.1.101.0_arm__6d0q6r3z979nw
Microsoft.Office.Word_17.6326.10212.0_arm__8wekyb3d8bbwe
Microsoft.Office.PowerPoint_17.6326.10212.0_arm__8wekyb3d8bbwe
Microsoft.WindowsMaps_4.1601.10150.0_arm__8wekyb3d8bbwe
Microsoft.WindowsCalculator_10.1601.49020.0_arm__8wekyb3d8bbwe
Microsoft.Office.Excel_17.6326.10212.0_arm__8wekyb3d8bbwe
53028HelgeMagnusKeck.WiFiTool_1.3.7.0_arm__kmtq5bk764tmy
Microsoft.Office.OneNote_17.6366.43292.0_arm__8wekyb3d8bbwe
ApptlyLLC.Beardify_1.0.0.15_arm__7a5tehvffvcaj
Microsoft.Messaging_2.13.20000.0_arm__8wekyb3d8bbwe
18966RudyHuyn.17583A2270534_5.9.0.2_arm__d4rfaqrt0cqt8
32363StampedeGames.EvoExplores_1.1.9.0_arm__ssg7zgmzztv24
microsoft.microsoftskydrive_17.7.0.0_arm__8wekyb3d8bbwe
Microsoft.WindowsStore_2015.25.22.0_arm__8wekyb3d8bbwe
i'm trying to remove lumia help and tips, which i have removed before, but now it shows in the applist with a blank icon. more info on this thread: http://forum.xda-developers.com/win...app-stuck-removing-windows-10-mobile-t3300158
mjz2cool said:
when I download the file from the link I get a zip file that cannot be opened without 3rd party archiver.
i'm trying to remove lumia help and tips, which i have removed before, but now it shows in the applist with a blank icon. more info on this thread:
Click to expand...
Click to collapse
I've reuploaded the file WinAppDeploy-x86_en-us.msi.zip.
Lumia Help+Tips does't appear in your list, I think you should install the app from store http://www.windowsphone.com/s?appId=ccfdca81-e2fe-44bd-8957-d0c55c636933 and then uninstall it using WinAppDeployCmd
w.bogdan said:
I've reuploaded the file WinAppDeploy-x86_en-us.msi.zip.
Lumia Help+Tips does't appear in your list, I think you should install the app from store http://www.windowsphone.com/s?appId=ccfdca81-e2fe-44bd-8957-d0c55c636933 and then uninstall it using WinAppDeployCmd
Click to expand...
Click to collapse
well, i tried downloading it already, but then it shows up twice, and after removing it the normal way the corrupted one is still there, would this way make any difference? gonna try it anyway
edit: nope, still there, very annoying
mjz2cool said:
well, i tried downloading it already, but then it shows up twice, and after removing it the normal way the corrupted one is still there, would this way make any difference? gonna try it anyway
edit: nope, still there, very annoying
Click to expand...
Click to collapse
In theory, WinAppDeployCmd should have removed all the dependencies of the app.
The link died, please upload to another Cloud Will WinAppDeploycmd.exe work on Windows 7?

FireTV boot animation replacement

Here is a replacement for the Amazon FireTV bootanimation. With the new root available for the Amazon FireTV2, I decided to make a new boot animiation for it.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Here is a 1920x1080 version of the bootanimation.zip.
http://www.mediafire.com/file/ciybr59yw5sjgrn/bootanimation_-_freedom1_-_1920_30fps.zip/file
(fixed zip file. was zipped with wrong compression. bootanimation files need to be zipped using compression method as 'store', not 'normal'.)
If there is any desire for a lower res bootanimation, let me know.
Here are the basic Windows steps to replace the bootanimation per
http://www.aftvnews.com/how-to-customize-the-boot-animation-on-a-rooted-fire-tv-or-fire-tv-stick/
adb connect 192.168.xx.xxx (your ip)
adb push c:\'directory'\bootanimation.zip /sdcard/
adb shell
su
mount -o remount,rw /system
rm -f /system/media/bootanimation.zip
cd /system/media
cp /sdcard/bootanimation.zip /system/media/bootanimation.zip
chmod 0644 /system/media/bootanimation.zip
exit
exit
reboot FireTV
If you don't see an animation during boot up, the bootanimation file is not supported.
Freedom 2
Or another one.
http://www.mediafire.com/file/fn6l61kntd6xnr6/bootanimation_-_freedom2_-_1920_30fps.zip/file
(fixed zip file. was zipped with wrong compression. bootanimation files need to be zipped using compression method as 'store', not 'normal'.)
My freedom.
http://www.mediafire.com/file/s8d03ts18tsnct5/bootanimation_-_my_freedom_-_1920_24fps.zip/file
Have a bunch more and will upload as I get time...
http://www.mediafire.com/file/52tskf4j10a1th4/bootanimation_-_firetv-_1920_24fps.zip/file
http://www.mediafire.com/file/mk1fhrbuz53afr2/bootanimation-min.zip/file
Haven't been able to test this one yet but here it is. Hopefully the audio works correctly.
Sloane FireTV 2
Excellent work mate exactly what I was looking for
Thanks appreciated big time
ATV 11 Bootanimation
0815hoffi said:
ATV 11 Bootanimation
Click to expand...
Click to collapse
I like this one @0815hoffi, excellent work thanks again, somehow it froze on the coloured dots first reboot, (sloane)
I reboot twrp wipe cache, all good friend. :good:
scottcruss said:
http://www.mediafire.com/file/mk1fhrbuz53afr2/bootanimation-min.zip/file
Haven't been able to test this one yet but here it is. Hopefully the audio works correctly.
Click to expand...
Click to collapse
best bootanimation ever, but after installation (
scottcruss said:
http://www.mediafire.com/file/mk1fhrbuz53afr2/bootanimation-min.zip/file
Haven't been able to test this one yet but here it is. Hopefully the audio works correctly.
Click to expand...
Click to collapse
Best bootanimation ever, but after installation (AFTVnews) firestick4k does not boot. Any idea?
adb shell "cp /sdcard/bootanimation.zip /system/media/bootanimation.zip"
adb shell "chmod 644 /system/media/bootanimation.zip
0815hoffi said:
adb shell "cp /sdcard/bootanimation.zip /system/media/bootanimation.zip"
adb shell "chmod 644 /system/media/bootanimation.zip
Click to expand...
Click to collapse
I did, by using chmod "0644" via terminal in TWRP. File has different attributes by viewing it with "7zip under Windows" ( all "store").
try to delete /system/media/bootanimation.zip an check if it now boots
stick boots, by displaying "android"
Ok than there is a problem with the zip.
try with my bootanimation
https://forum.xda-developers.com/attachments/bootanimation-zip.5135003/
works, it's the nice "ATV11", the zip-file seems to be defect! I will try again with a new download.
Many THX
Fire TV Boot Lite New Interface
works fine on my firestik4k, THX
Thanks bro .
Used to work before but with newest firmware it seems something has changed. Did anyone got theese working again on stick 4k yet?
Okay i got it working again.
For anyone else:
If you have some magisk modules active check the file in the directory:
/data/adb/modules/"your module"/system/media/bootanimation.zip
and
/system/media/bootanimation.zip
you need to replace both zip-files in order to get the custom boot animation to work again.
If you often update and test your new bootanimation.zip then you may want to check my update script. Will be improving it from time to time to get a more fluid and fast way to update.
FireTV-boot-animation-update-script/bar.sh at c0b8a222cdafbccf281c9a6adcac0c5d7c6629a2 · SoulInfernoDE/FireTV-boot-animation-update-script
Makes it easier to update bootanimation.zip from twrp recovery terminal - FireTV-boot-animation-update-script/bar.sh at c0b8a222cdafbccf281c9a6adcac0c5d7c6629a2 · SoulInfernoDE/FireTV-boot-animatio...
github.com

Categories

Resources