foobar'd android

Search This thread

chrs2021

Senior Member
Mar 23, 2009
56
9
Could someone pm a link to framework-res.apk from /system/frameworks/. I am stuck in a boot loop and the drive i had that file backed up to failed.

any help would greatly be appreciated

in droid explorer it shows up as android system
 
Last edited:

death1246

Senior Member
Jan 24, 2010
642
95
Florida
http://www.mediafire.com/?63798kh3vex715o


When you are going to push it follow my instructions


Copy it to the memory/or your memory card

in adb type this

Code:
adb shell
su
cp sdcard/framework-res.apk system/framework/framework-res.apk


if its not on the main memory and its on your memory card type this

Code:
adb shell
su
cp sdcard/_ExternalSD/framework-res.apk system/framework/framework-res.apk


after you do that the phone will recognize the original framework and you will be fine.

PS: Although the root exploring app sees the framework-res.apk it may not be registered with the phone and it gets fixed by pushing it using adb shell


now remember do not do adb shell cp sdcard/whatever.apk because the phone will not allow it for some reason...... FOLLOW MY INSTRUCTIONS
 
Last edited:
  • Like
Reactions: Just Yourshadow

chrs2021

Senior Member
Mar 23, 2009
56
9
OMG thank you i am going crazy with this drive i am in linux now, so i'll just push this from adb in recovery...
 

djmcnz

Retired Recognized Developer
Oct 13, 2009
5,747
1,689
Auckland, NZ
OnePlus 8
Google Pixel 8
http://www.mediafire.com/?63798kh3vex715o


When you are going to push it follow my instructions


Copy it to the memory/or your memory card

in adb type this

Code:
adb shell
su
cp sdcard/framework-res.apk system/framework-res.apk


if its not on the main memory and its on your memory card type this

Code:
adb shell
su
cp sdcard/_ExternalSD/framework-res.apk system/framework-res.apk


after you do that the phone will recognize the original framework and you will be fine.

PS: Although the root exploring app sees the framework-res.apk it may not be registered with the phone and it gets fixed by pushing it using adb shell


now remember do not do adb shell cp sdcard/whatever.apk because the phone will not allow it for some reason...... FOLLOW MY INSTRUCTIONS

Err no... that won't work.

Code:
adb shell
su
busybox mount -o,remount -rw /system
stop
cp /sdcard/_ExternalSD/framework-res.apk /system/framework/
reboot

Will deliver a much better (working) result...
 

chrs2021

Senior Member
Mar 23, 2009
56
9
Since we're not sure how to do this, this is what i did:

Well the system was boot-looping on the kernel level so neither instructions were accurate.

I first installed the test version CWM recovery, from there I mounted system from inside recovery and then i used these commands

Code:
adb push ./framework-res.apk /sdcard/framwork-res.apk
adb shell 
cp /sdcard/framework-res.apk /system/framework/

then i rebooted and crossed my fingers till it finally booted
 

death1246

Senior Member
Jan 24, 2010
642
95
Florida
holy **** lol I seriosuly thought I put in framework folder OMFG......



bare with me it was 6am XD



EPIC FAIL ON ME lol
 

Top Liked Posts

  • There are no posts matching your filters.
  • 1
    http://www.mediafire.com/?63798kh3vex715o


    When you are going to push it follow my instructions


    Copy it to the memory/or your memory card

    in adb type this

    Code:
    adb shell
    su
    cp sdcard/framework-res.apk system/framework/framework-res.apk


    if its not on the main memory and its on your memory card type this

    Code:
    adb shell
    su
    cp sdcard/_ExternalSD/framework-res.apk system/framework/framework-res.apk


    after you do that the phone will recognize the original framework and you will be fine.

    PS: Although the root exploring app sees the framework-res.apk it may not be registered with the phone and it gets fixed by pushing it using adb shell


    now remember do not do adb shell cp sdcard/whatever.apk because the phone will not allow it for some reason...... FOLLOW MY INSTRUCTIONS