Cyanogen OS 12 Apps

JakeMatthews

Senior Member
Jun 27, 2010
55
16
0
Honestly, 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.
It doesn't work on exodus either
 
  • Like
Reactions: TheKnux

TheKnux

Senior Member
Sep 28, 2011
2,512
773
193
Akron
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.
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.
 

rcook55

Senior Member
Sep 11, 2012
185
20
0
DSM, IA
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.
Cool, thanks for that. I wondered if there wouldn't be something missing, maybe someone can find the libs -- I too am no dev.
 

sathya

Senior Member
Sep 13, 2006
333
36
0
Blurred Lockscreen

As requested earlier can you please upload the translucent blurred lock screen? I am on Exodus and it has the default boring lockscreen.
 

reversegear

Senior Member
Jul 17, 2011
2,279
1,607
193
Are this Apps don't work on CM11 ?
Because i'm getting parsing Error while installing :(
Android apps doesn't support backward compatibility.

App which is made for CM12 won't work on CM11 due to api restrictions.

It can be only backported by making minor modifications

Sent from my Moto G using Tapatalk
 
  • Like
Reactions: sui81

Bucika

Senior Member
Aug 4, 2010
1,001
248
93
Sydney
First, thanks for all the apps!

I am interested in Email app (Boxer) but when I've want to have the version from cm12s. I've installed the app from OP, but It's not the same.. It's just the regular Boxer app (that is not the same).

Any help??
 

kosta20071

Senior Member
Jan 10, 2011
60
19
28
I managed to install the "theme store" from 12S on nightly 12.1 . I downloaded some themes from the store.
I get FC after I download a theme (becuase it trying to apply the theme) , but I found where they are stored (the themes .apk s), so ater installing the apk of the theme , the nightly "Themes" app recognize them , and apply them well. I will post them soon , if it legal :D
 

Rafase282

Senior Member
Oct 25, 2006
1,573
326
0
Bronx
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?
 

Bucika

Senior Member
Aug 4, 2010
1,001
248
93
Sydney
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?
Exactly the same question!!

I've even backuped the app with helium, but still only the free app from play store.. but man I do really like that app on cm12s:)
 

Rafase282

Senior Member
Oct 25, 2006
1,573
326
0
Bronx
The solution I found was to just install the app from the CO12 not the one form the store, then try to activate the the pro, you get a chance to spam 10 friends, then you get a promo code for free pro. Exchange is not included tho. If anyone else figures something else then let me know. I check some scripts, recreated some directories and nothing.
 

diskoteer

Senior Member
Mar 27, 2011
63
54
38
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:
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]
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?
 

Rafase282

Senior Member
Oct 25, 2006
1,573
326
0
Bronx
I'd like to understand what this script does:
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]
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?
I tried that, I pushed the files, directories and everything, then i ran the script and it didnt work.
 

Adithya R

Senior Member
Apr 3, 2015
369
590
133
Bangalore
A billion thanks for the File Manager apk

Here 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.
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 otg :( I started paniccking when I couldnt find the default file manager, but uou came to the rescue) :) :)
:good::good::good: