Really? Works fine for me although I don't use it much since I primarily use Amazon music on my watchyes but it doesnt adjust properly to the small circular screen..
Really? Works fine for me although I don't use it much since I primarily use Amazon music on my watchyes but it doesnt adjust properly to the small circular screen..
W: invalid resource directory name: /home/lividhen/apktool/authy/res navigation
brut.androlib.AndrolibException: brut.common.BrutException: could not exec (exit code = 1):
W: invalid resource directory name: D:\Watch\Apks\Spotify\res navigation
brut.androlib.AndrolibException: brut.common.BrutException: could not exec (exit code = 1):
--use-aapt2
flag with apktool and it should be fixed. It is also suggested that removing frameworks/1.apk file before running apktool, creating dist folder inside decompiled apk or using -o flag to set output location also fixed same issue for some apps. For spotify however using apktool like this apktool b .\spotify-lite --use-aapt2
fixed it for me. Hope it helps. Cheers.Thank you this works great!Use--use-aapt2
flag with apktool and it should be fixed. It is also suggested that removing frameworks/1.apk file before running apktool, creating dist folder inside decompiled apk or using -o flag to set output location also fixed same issue for some apps. For spotify however using apktool like thisapktool b .\spotify-lite --use-aapt2
fixed it for me. Hope it helps. Cheers.
I ported xmanager's spotify lite v1.9.0.29900 but it isn't exactly user friendly. Settings aren't visible, bottom bar only shows search but if i click edges I can press library and home pages on galaxy watch 4. I tried xml changes recommended in page 4 but they don't exist in this version and I couldn't find the substitute for them. I'd rather mod the native wearos spotify anyway, phone apks are battery hog. Spotify modding is very common but none shares how they mod it so I don't have any information whatsoever to start with. If anyone knows how to unlock unlimited shuffles and make it adfree please reach out.
keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000
zipalign -p -f -v 4 <input>.apk <output>.apk
apksigner sign --ks my-release-key.keystore <aligned>.apk
You don't need the whole sdk or wsl. You can get build-tools from here for zipalign and apksigner. Keytool is inside java releases. My preference is adoptium 17 jdk. Extract these to a folder and add it to your user $path. Then you can call them from terminal anywhere in your pc. I always forgot how to use these commands so this answer on stackoverflow is always open whenever I try messing with apks.Thank you this works great!
Im not sure if this has already been mentioned but for anyone that is having trouble installing the apk on android 11+ you can use these commands.
Bash:keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000 zipalign -p -f -v 4 <input>.apk <output>.apk apksigner sign --ks my-release-key.keystore <aligned>.apk
On windows I think you either need the full android sdk or just install them in wsl.
Oh the version I got from the official website did not have those.You don't need the whole sdk or wsl. You can get build-tools from here for zipalign and apksigner. Keytool is inside java releases. My preference is adoptium 17 jdk. Extract these to a folder and add it to your user $path. Then you can call them from terminal anywhere in your pc. I always forgot how to use these commands so this answer on stackoverflow is always open whenever I try messing with apks.
Also I found out that xmanager's spotify lite v1.9.0.29900 works and scales out of the box. It didn't need any modification in the first place. Without density change it just works fine on galaxy watch 4 but I set it anyway. 280 turns out to be perfect for fitting everything in screen while not messing up wearos stuff.
I don't think you can do Google apps as they won't work with a different signature.Been using the WearModder to unsuccessfully create a zoomed out version of Google Voice, but it just creates a Google Voice that doesn't allow for logging into your google account. It literally won't fetch google accounts, its broken somehow internally. Has anyone gotten Google Voice to work or is willing to give it a shot?
Unfortunately, nothing happens during authorization and login. Black screen. The application is closed.I created a working version of Spotify 8.8.22.510 xmanager amoled build .
I tested it and it works perfectly.
You can also enter the Settings and other things like your libary.
I hope you guys like it.
Sry for my bad english.
Your watch is running Wear OS: 3 I think. My watch on Wear OS: 2.41I dont know whats wrong.
On my galaxy watch 4 it is working perfectly fine.
I am not very into that stuff , I hust decompiled it ran wearmodder and rebuild it.I signed it with the mobile app apk-signer for android.Your watch is running Wear OS: 3 I think. My watch on Wear OS: 2.41
Can you lower the requirements for this app? Compatible with watch more below.
Could you do the same for Spotify Lite version? Preferably the latest version:I am not very into that stuff , I hust decompiled it ran wearmodder and rebuild it.I signed it with the mobile app apk-signer for android.
java -jar apktool.jar b apk_name
java -jar apktool.jar b app_name --use-aapt2
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore Spotify.keystore app_name/dist/app_name.apk Spotiwear
# Decompile apk
java -jar apktool_2.3.3.jar d spotify-lite.apk
# Mod resources (use directory or individual files as arguments)
java -jar WearModder.jar spotify-lite/res
# Perform additional manual tweaks
# Build apk
java -jar apktool_2.3.3.jar b spotify-lite
# Sign
keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-release-key.keystore spotify-lite/dist/spotify-lite.apk alias_name
Java -jar apktool.jar d apk_name.apk
- With Java version: java -jar WearModder.jar apk_name/res
- With Python version: python ./wearmodder.py ./apk_name/res
java -jar apktool.jar b apk_name
keytool -genkey -v -keystore my-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-key.keystore apk_name/dist/apk_name.apk alias_name