Renamed the OP Title so no one gets confused. Sorry about that. Created it before I went to bed so I was tired and wasn't thinking. Thanks @xanthrax for telling me how to do it.Small nitpick: would you mind changing the thread name reflecting that we're talking about CM12S apps ?
It doesn't work on exodus eitherHonestly, I didn't really take the time to dig that deep, I literally flashed it, pulled some stuff, uploaded it, posted links, etc.
I'm now back on BlissPop and can confirm that the new Theme Chooser (2.0) doesn't work on 5.1. I don't know if it's cause COS12 is based off of 5.0.2 or what cause I know since all ROMS are basically CM based, that shouldn't be an issue.
Unless a dev on here can work their magic and take a look at it.
I'd like to know this as well, will any of the .apks work on CM12 nightlies? I'd like to use MaxxAudio in particular.Can I install the new Theme Chooser from CM12s on CM12 nightlies? Would the per App theming thing work?
Again, I flashed the ROM just to pull some things people might want, most of the things like Camera, MaxxAudio, etc rely on lib files and I didn't get around to pulling those cause I went to bed. I tried the new Theme Chooser and it didn't work with BlissPop v2.3 (5.0.2) or v3.1 (5.1r5). When I extracted the Theme Chooser, there were no lib files with it so I don't have any idea what it needs to function properly.I'd like to know this as well, will any of the .apks work on CM12 nightlies? I'd like to use MaxxAudio in particular.
Cool, thanks for that. I wondered if there wouldn't be something missing, maybe someone can find the libs -- I too am no dev.Again, I flashed the ROM just to pull some things people might want, most of the things like Camera, MaxxAudio, etc rely on lib files and I didn't get around to pulling those cause I went to bed. I tried the new Theme Chooser and it didn't work with BlissPop v2.3 (5.0.2) or v3.1 (5.1r5). When I extracted the Theme Chooser, there were no lib files with it so I don't have any idea what it needs to function properly.
I'm no dev, just a regular joe appreciating the aspects of life and not taking anything for granted.
Android apps doesn't support backward compatibility.Are this Apps don't work on CM11 ?
Because i'm getting parsing Error while installing![]()
Exactly the same question!!I would like the boxer app to behave like it does on Cyanogen OS 12, if you just install the apk it is the same as the free version, while on CO12 you get the premium features. Any workaround for CM12.1 with a CO account?
I'd like to understand what this script does:I would like the boxer app to behave like it does on Cyanogen OS 12, if you just install the apk it is the same as the free version, while on CO12 you get the premium features. Any workaround for CM12.1 with a CO account?
#!/system/bin/sh
BUNDLED_APP_DIR=/vendor/bundled-app
get_app_package()
{
local path=$1
echo "$(aapt dump badging "$path" | grep -o "package: name='[^']*'" | cut -d \' -f 2)"
}
install_app()
{
local app=$1
local package=$(get_app_package "$app")
[HIDE]
# If package doesn't exist and we had it before user uninstalled it
if [ -e /data/misc/cyngn/prebundle/$package ] &&
[ -z $(pm list packages | grep $package) ]; then
return 0
fi
pm install -r $app
touch "/data/misc/cyngn/prebundle/$package"
}
LAST_OS_VERSION=$(getprop persist.sys.prebundle.done)
CURRENT_OS_VERSION=$(getprop ro.build.version.incremental)
# skip install on tempfs data partition
if [ $(getprop vold.decrypt) == "trigger_restart_min_framework" ]; then
exit 0
fi
# Do nothing if no OS version change
if [ "$LAST_OS_VERSION" == "$CURRENT_OS_VERSION" ]; then
exit 0
fi
for apk in $BUNDLED_APP_DIR/**/*.apk; do
install_app $apk
done
setprop persist.sys.prebundle.done "$CURRENT_OS_VERSION"
[/HIDE]
I tried that, I pushed the files, directories and everything, then i ran the script and it didnt work.I'd like to understand what this script does:
This should be the installer script for the COS12 prebuilt apps. The apks can be found in directory "bundled-app" (line 2). Anyone has some clues?Code:#!/system/bin/sh BUNDLED_APP_DIR=/vendor/bundled-app get_app_package() { local path=$1 echo "$(aapt dump badging "$path" | grep -o "package: name='[^']*'" | cut -d \' -f 2)" } install_app() { local app=$1 local package=$(get_app_package "$app") [HIDE] # If package doesn't exist and we had it before user uninstalled it if [ -e /data/misc/cyngn/prebundle/$package ] && [ -z $(pm list packages | grep $package) ]; then return 0 fi pm install -r $app touch "/data/misc/cyngn/prebundle/$package" } LAST_OS_VERSION=$(getprop persist.sys.prebundle.done) CURRENT_OS_VERSION=$(getprop ro.build.version.incremental) # skip install on tempfs data partition if [ $(getprop vold.decrypt) == "trigger_restart_min_framework" ]; then exit 0 fi # Do nothing if no OS version change if [ "$LAST_OS_VERSION" == "$CURRENT_OS_VERSION" ]; then exit 0 fi for apk in $BUNDLED_APP_DIR/**/*.apk; do install_app $apk done setprop persist.sys.prebundle.done "$CURRENT_OS_VERSION" [/HIDE]
Oh thank you so much! :good: All I wanted is the File Manager apk, as the default file manager is missing after I installed a 3rd party file manager (I had decided to roll back to default file manager because there are some issues in writing files to external pendrive via otgHere is the download link for the apps that are included in the ROM.
https://www.androidfilehost.com/?w=files&flid=29527
Here is the link to the new bootanimation.
https://www.androidfilehost.com/?fid=95916177934554903
Now some of these might be the same apps that are included in the latest CM12 nightlies but I'm not sure. Been on BlissPop since the Alpha days and refuse to flash anything else so you'll have to figure out the versions yourself. I literally flashed this just to pull these things for anyone interested. Now I'm back on BlissPop.