[ROM][Beta][CM9][9/28/12] Galaxy Exhibit 4G - Samsung Galaxy Exhibit 4G

This is a port of CyanogenMod 9 (Android 4.0.x) for the Samsung Exhibit II 4G. It is very much a work-in-progress. There are no guarantees whatsoever that it will work to your requirements or that it will progress beyond its current state. Major kudos to Arco68 for his help in getting this going; you would not have this ROM except for him.
Here is a video by dennis96411, showing CM9 on the Exhibit II
What seems to work
Phone
Wifi
SMS/MMS
GPS
Bluetooth audio
Amazon Market
HW accelerated display
Headphone detection
Microphone detection
T-Mobile Wifi-calling (works for most)
init.d support
CIFS networking
Camera (Stock Camera only, 3rd-Party apps mostly don't work)
Haptic keyboard feedback
Market/Play
Gmail
Browser
Screenshots
Streaming video
What does not work (NO ETAs)
911 Emergency Calls
Torch app (check thread for alternatives)
CM9 for the Galaxy Exhibit is NOT vulnerable to USSD dialer exploits.
Vanishing text
The content of text buffers sometimes disappear when touched (messages in: gmail,yahoo,fb). Wiping cache has fixed this for some. Long-press of back key and restarting app for others.
Facebook
Facebook sync is not included in AOSP. 3rd-party apps are available in the market.
3g vs 4g
Cyanogen Mod views UMTS as 3g whereas the stock Exhibit II rom views it as 4g. Even though you see 3g on your status bar, your actual speed should be unchanged from stock.
Changing band preference
In dialer, enter Service Mode via
*#*#2263#*#*
Click to expand...
Click to collapse
You should see:
[1] Automatic
[2] WCDMA Band Preference
[3] GSM Band Preference
To force WCDMA only, tap option 2, on next screen tap option 6 - WCDMA All
To force GSM only, tap option 3, on next screen tap option 7 - GSM All
You can use the back button to verify your settings took effect. To exit, tap menu button, quit. This change does not survive a reboot. If you use this frequently, save it as a contact.
WIFI Problems
Wifi is working fine for almost everyone using CyanogenMod 9 Galaxy Exhibit build (and also for the Galaxy W). If you are one of the very few having difficulties, a possible fix has been posted that may help: WiFix Manager.
Installation
Installation requires a CWM-based recovery. Download/update Galaxy Exhibit Custom CWM Recovery here.
Updating CyanogenMod 9
Once you have a stable install you're happy with you can apply future updates w/o any wiping. If for some reason a wipe is required, I'll make that known.
Download CM9 Beta
Core2idiot's CM9 Nightlies
Google Apps
Google Apps gapps-ics-20120429-signed.zip .... Mirror
Kernel sources
Copy the downloaded cm9 beta and gapps zip files to your internal or removable sdcard.
Back up your data.
Start Custom Recovery (cwm): Press & hold Vol-Up, then press & hold Power. Shortly after the plain white Samsung logo appears, release both buttons. Recovery should start after the color Samsung/T-Mobile Exhibit logo.
CWM Keys:
Home key = enter
Back key = back
VolUp/Dwn = highlight choice
If installing over a non-CM9 ROM you must do a ROMwipe before installing.
Select "Install zip from sdcard." Choose the cm9 beta zip from sdcard or external sdcard, depending on where you placed it. Highlight the cm9 beta zip file then press Home. Confirm the choice and installation will proceed. You may also install Google Apps (gapps) at this time. Gapps does not include all Google apps. Those not included are available from the market.
Please DO NOT PM me with support questions! Post them in this thread!

Reserved
/10char

Compile CM9
Portions copied from Motorola Droid X CyanogenMod Wiki
Thanks to Arco68 for hand-holding and patches. Any mistakes are mine.
These instructions assume that you will be using an Ubuntu 10.10 Linux system (or a close relation, Debian, Linux Mint,etc). Setting up a Linux partition or creating a Linux VM are beyond the scope of this post.
First, Install the Android SDK
Next, install the linux build packages required. I install using apt-get:
For 32-bit & 64-bit systems
apt-get install git-core gnupg flex bison gperf libsdl1.2-dev libesd0-dev libwxgtk2.6-dev squashfs-tools build-essential zip curl libncurses5-dev zlib1g-dev sun-java6-jdk pngcrush schedtool
For 64-bit only systems
apt-get install g++-multilib lib32z1-dev lib32ncurses5-dev lib32readline5-dev gcc-4.3-multilib g++-4.3-multilib
NOTE: gcc-4.3-multilib g++-4.3-multilib is no longer available for Ubuntu 11.04 64-bit, but should still build without issue.
Click to expand...
Click to collapse
NOTE: On Ubuntu 10.10, and variants, you need to enable the partner repository to install sun-java6-jdk:
add-apt-repository "deb http://archive.canonical.com/ maverick partner"
NOTE: sun-java6-jdk <> open-java6-jdk!
Click to expand...
Click to collapse
These instructions assume an "android" directory located in your home
Install repo
Code:
mkdir ~/bin
curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo > ~/bin/repo
chmod a+x ~/bin/repo
Download CM9 source
Code:
mkdir ~/android/system
cd ~/android/system
repo init -u git://github.com/CyanogenMod/android.git -b ics
repo sync -j16
This can take hours. When done, ~/android/system should be at least 11Gb in size.
Next:
Code:
cd ~/android/system/frameworks/base
git remote add arco git://github.com/arco/android_frameworks_base.git
git fetch arco
Download kernel source
Code:
mkdir -p ~/android/system/kernel/samsung/ancora_tmo
cd ~/android/system/kernel/samsung/ancora_tmo
git init
git pull https://github.com/arco/samsung-kernel-msm7x30.git
Repeat the pull command occasionally to obtain updates.
Download ancora_tmo device directory
Code:
mkdir -p ~/android/system/device/samsung/ancora_tmo
cd ~/android/system/device/samsung/ancora_tmo
git init
git pull git://github.com/Jocala/device.ancora_tmo.ics.git
Repeat the pull command occasionally to obtain updates.
Download ancora_tmo vendor directory
Code:
mkdir -p ~/android/system/vendor/samsung/ancora_tmo
cd ~/android/system/vendor/samsung/ancora_tmo
git init
git pull git://github.com/Jocala/vendor.ancora_tmo.ics.git
Repeat the pull command occasionally to obtain updates.
Set up prebuilts:
Code:
cd ~/android/system
./vendor/cm/get-prebuilts
Applying cherry-picks
You'll need to gain at least a rudimentary knowledge of
using git and github. Teaching this is beyond the scope
of this howto. Cherry-picks must be re-applied after each
repo sync.As time goes by they also get merged, so it may be that some
cherry-picks are no longer required. You can check their status here.
Attached to this post is a script (reposync.txt) that will do a repo
sync then apply current cherry-picks. I keep it in my
android/system directory. Rename and chmod 0755.
Set up your environment & build
Code:
. build/envsetup.sh
lunch cm_ancora_tmo-userdebug
brunch ancora_tmo
Building takes at least an hour. If everything worked, you should have a
out/target/product/ancora_tmo/cm-9-SOMEDATE-UNOFFICIAL-ancora_tmo.zip file
============
CCACHE
If you have room on your build system you can speed
your builds up considerably by using ccache. ccache is a compiler
cache. It speeds up re-compilation of C/C++ code by caching
previous compiles and detecting when the same compile is
being done again.
Install it with apt-get: sudo apt-get ccache
Set environment vars for Android use:
(I put these exports in my .bashrc)
Code:
export USE_CCACHE=1
export NDK_CCACHE=ccache
Set a cache size of 10G for optimal results:
Code:
ccache -M 10G
Check the status of your cache with the command:
Code:
ccache -s
Returns:
cache directory /home/jocala/.ccache
cache hit 106673
cache miss 18379
called for link 3758
preprocessor error 5
not a C/C++ file 4425
unsupported compiler option 678
no input file 4565
files in cache 36758
cache size 3.2 Gbytes
max cache size 10.0 Gbytes

Nice! Downloading right now. Too bad dev-host seems pretty slow but oh well.
EDIT: Okay not that slow... Gotta wait for back ups. Can't wait.
Installed. Rebooting.
Well it boots. No GAPPS but I can deal with that for right now.
EDIT: Home button doesn't work. Went into setting and couldn't use the home button to straight to home screen. Also sees my SD card as blank. Hopefully that didn't mess it up. Maybe it is talking about the internal SD card.
EDIT: Yeah it was just the internal because I used the SuperWipe script beforehand.
That was all that I can find so far. Flashing back because I need to be able to use my phone during the school day so I don't get bored in class lol.

Downloaded and installed at school, will help you get some logcats and troubleshoot the ROM when I get home
Very nice work, I just hope trolls (dswaggz) don't clutter up this thread with useless crap.

stab244 said:
Nice! Downloading right now. Too bad dev-host seems pretty slow but oh well.
EDIT: Okay not that slow... Gotta wait for back ups. Can't wait.
Installed. Rebooting.
Well it boots. No GAPPS but I can deal with that for right now.
EDIT: Home button doesn't work. Went into setting and couldn't use the home button to straight to home screen. Also sees my SD card as blank. Hopefully that didn't mess it up. Maybe it is talking about the internal SD card.
EDIT: Yeah it was just the internal because I used the SuperWipe script beforehand.
That was all that I can find so far. Flashing back because I need to be able to use my phone during the school day so I don't get bored in class lol.
Click to expand...
Click to collapse
Google Apps for ICS in 2nd post. External SD is mounted as /emmc or /mnt/emmc by CM9, not /mnt/external_sd.
In CWM references to "internal sd" seem to actually point to our external sd.

dennis96411 said:
Downloaded and installed at school, will help you get some logcats and troubleshoot the ROM when I get home
Very nice work, I just hope trolls (dswaggz) don't clutter up this thread with useless crap.
Click to expand...
Click to collapse
Dan has apologised, so let's forgive and forget.

jocala said:
Google Apps for ICS in 2nd post. External SD is mounted as /emmc or /mnt/emmc by CM9, not /mnt/external_sd.
In CWM references to "internal sd" seem to actually point to our external sd.
Click to expand...
Click to collapse
Yeah I saw that. Still don't get why home button didn't work for me. Any one else have it not work?
Sent from my SGH-T679 using Tapatalk

jocala said:
Dan has apologised, so let's forgive and forget.
Click to expand...
Click to collapse
Okay, I will forgive him, but if I see 10 replies from him with "ey can supercharge/port diz hax plz devs make it faster" everyday I'm holding onto the grudge.
Now, onto matter of business, the ROM runs smooth, but I didn't wipe data (I wiped system/cache/dalvik cache) so all the apps from my old ROM are still present. Everything runs smooth, it seem to have fixed my call log crash problem and gave 357.5MB of RAM, a ~1.5MB increase. Will play with it more when I get home.

Look guys i apologize an thanx jocala
via SWAGG GANGG ™

stab244 said:
Yeah I saw that. Still don't get why home button didn't work for me. Any one else have it not work?
Sent from my SGH-T679 using Tapatalk
Click to expand...
Click to collapse
For me, all buttons work except home. ICS was designed for phones w/o capacitive buttons, but I wonder if it's a scan code issue.
EDIT: scan code is correct: 102

dennis96411 said:
Okay, I will forgive him, but if I see 10 replies from him with "ey can supercharge/port diz hax plz devs make it faster" everyday I'm holding onto the grudge.
Now, onto matter of business, the ROM runs smooth, but I didn't wipe data (I wiped system/cache/dalvik cache) so all the apps from my old ROM are still present. Everything runs smooth, it seem to have fixed my call log crash problem and gave 357.5MB of RAM, a ~1.5MB increase. Will play with it more when I get home.
Click to expand...
Click to collapse
Hey did u try camera yet
via SWAGG GANGG ™

Camera says that it cannot find a camera.
Hmm I can help debug the home button on the weekend. Can't really help out on the weekdays.
Sent from my SGH-T679 using Tapatalk

Here's what I have so far:
Working:
Cellular network [EDGE/3G/4G/etc]
Wi-Fi
Bluetooth
GPS
Keyboard haptic feedback
Accurate cellular network [H+ for HSPA+ and 3G for UMTS] and battery [1% increment] indicators
CUSTOM BOOT ANIMATIONS! [I installed the CyanogenMod 7 one using ROM Toolbox, looking very awesome every time I start the phone]
Not working:
Camera [See logcat]
Market crashes when attempting to add Google account [Paid apps that uses Market for authentication may not work]
Browser crashes [See logcat]
Email crashes [Current solution is to freeze the app and use an alternative email client]
Exchange services crashes [Same as above]
Most options in Dev Tools crash
Headphone jack [Probably not recognized, will do logcat]
Home key
LED light
Here are some logcats:
Camera
Code:
E/CameraService( 135): Camera HAL module not loaded
E/CameraHolder( 2365): fail to connect Camera
E/CameraHolder( 2365): java.lang.RuntimeException: Fail to connect to camera service
E/CameraHolder( 2365): at android.hardware.Camera.native_setup(Native Method)
E/CameraHolder( 2365): at android.hardware.Camera.<init>(Camera.java:302)
E/CameraHolder( 2365): at android.hardware.Camera.open(Camera.java:264)
E/CameraHolder( 2365): at com.android.camera.CameraHolder.open(CameraHolder.java:131)
E/CameraHolder( 2365): at com.android.camera.Util.openCamera(Util.java:267)
E/CameraHolder( 2365): at com.android.camera.Camera$4.run(Camera.java:1098)
E/CameraHolder( 2365): at java.lang.Thread.run(Thread.java:856)
Browser
Code:
E/libEGL ( 5409): call to OpenGL ES API with no current context (logged once per thread)
E/AndroidRuntime( 5409): FATAL EXCEPTION: pool-1-thread-3
E/AndroidRuntime( 5409): android.database.sqlite.SQLiteException: table bookmarks has 12 columns but 13 values were supplied: , while compiling: INSERT INTO bookmarks SELECT * FROM bookmarks_temp;
E/AndroidRuntime( 5409): at android.database.sqlite.SQLiteCompiledSql.native_compile(Native Method)
E/AndroidRuntime( 5409): at android.database.sqlite.SQLiteCompiledSql.<init>(SQLiteCompiledSql.java:68)
E/AndroidRuntime( 5409): at android.database.sqlite.SQLiteProgram.compileSql(SQLiteProgram.java:143)
E/AndroidRuntime( 5409): at android.database.sqlite.SQLiteProgram.compileAndbindAllArgs(SQLiteProgram.java:361)
E/AndroidRuntime( 5409): at android.database.sqlite.SQLiteStatement.acquireAndLock(SQLiteStatement.java:260)
E/AndroidRuntime( 5409): at android.database.sqlite.SQLiteStatement.executeUpdateDelete(SQLiteStatement.java:84)
E/AndroidRuntime( 5409): at android.database.sqlite.SQLiteDatabase.executeSql(SQLiteDatabase.java:1899)
E/AndroidRuntime( 5409): at android.database.sqlite.SQLiteDatabase.execSQL(SQLiteDatabase.java:1839)
E/AndroidRuntime( 5409): at com.android.browser.provider.BrowserProvider$DatabaseHelper.onUpgrade(BrowserProvider.java:333)
E/AndroidRuntime( 5409): at android.database.sqlite.SQLiteOpenHelper.getWritableDatabase(SQLiteOpenHelper.java:170)
E/AndroidRuntime( 5409): at com.android.browser.provider.BrowserProvider2$DatabaseHelper.importFromBrowserProvider(BrowserProvider2.java:505)
E/AndroidRuntime( 5409): at com.android.browser.provider.BrowserProvider2$DatabaseHelper.onCreate(BrowserProvider2.java:453)
E/AndroidRuntime( 5409): at android.database.sqlite.SQLiteOpenHelper.getWritableDatabase(SQLiteOpenHelper.java:165)
E/AndroidRuntime( 5409): at com.android.browser.provider.SQLiteContentProvider.delete(SQLiteContentProvider.java:178)
E/AndroidRuntime( 5409): at android.content.ContentProvider$Transport.delete(ContentProvider.java:213)
E/AndroidRuntime( 5409): at android.content.ContentResolver.delete(ContentResolver.java:827)
E/AndroidRuntime( 5409): at com.android.browser.Controller$PruneThumbnails.run(Controller.java:377)
E/AndroidRuntime( 5409): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1076)
E/AndroidRuntime( 5409): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:569)
E/AndroidRuntime( 5409): at java.lang.Thread.run(Thread.java:856)
E/SQLiteOpenHelper( 5409): Couldn't open browser2.db for writing (will try read-only):
E/SQLiteOpenHelper( 5409): android.database.sqlite.SQLiteException: table bookmarks has 12 columns but 13 values were supplied: , while compiling: INSERT INTO bookmarks SELECT * FROM bookmarks_temp;
E/SQLiteOpenHelper( 5409): at android.database.sqlite.SQLiteCompiledSql.native_compile(Native Method)
E/SQLiteOpenHelper( 5409): at android.database.sqlite.SQLiteCompiledSql.<init>(SQLiteCompiledSql.java:68)
E/SQLiteOpenHelper( 5409): at android.database.sqlite.SQLiteProgram.compileSql(SQLiteProgram.java:143)
E/SQLiteOpenHelper( 5409): at android.database.sqlite.SQLiteProgram.compileAndbindAllArgs(SQLiteProgram.java:361)
E/SQLiteOpenHelper( 5409): at android.database.sqlite.SQLiteStatement.acquireAndLock(SQLiteStatement.java:260)
E/SQLiteOpenHelper( 5409): at android.database.sqlite.SQLiteStatement.executeUpdateDelete(SQLiteStatement.java:84)
E/SQLiteOpenHelper( 5409): at android.database.sqlite.SQLiteDatabase.executeSql(SQLiteDatabase.java:1899)
E/SQLiteOpenHelper( 5409): at android.database.sqlite.SQLiteDatabase.execSQL(SQLiteDatabase.java:1839)
E/SQLiteOpenHelper( 5409): at com.android.browser.provider.BrowserProvider$DatabaseHelper.onUpgrade(BrowserProvider.java:333)
E/SQLiteOpenHelper( 5409): at android.database.sqlite.SQLiteOpenHelper.getWritableDatabase(SQLiteOpenHelper.java:170)
E/SQLiteOpenHelper( 5409): at com.android.browser.provider.BrowserProvider2$DatabaseHelper.importFromBrowserProvider(BrowserProvider2.java:505)
E/SQLiteOpenHelper( 5409): at com.android.browser.provider.BrowserProvider2$DatabaseHelper.onCreate(BrowserProvider2.java:453)
E/SQLiteOpenHelper( 5409): at android.database.sqlite.SQLiteOpenHelper.getWritableDatabase(SQLiteOpenHelper.java:165)
E/SQLiteOpenHelper( 5409): at android.database.sqlite.SQLiteOpenHelper.getReadableDatabase(SQLiteOpenHelper.java:231)
E/SQLiteOpenHelper( 5409): at com.android.browser.provider.BrowserProvider2.query(BrowserProvider2.java:863)
E/SQLiteOpenHelper( 5409): at android.content.ContentProvider$Transport.query(ContentProvider.java:178)
E/SQLiteOpenHelper( 5409): at android.content.ContentResolver.query(ContentResolver.java:316)
E/SQLiteOpenHelper( 5409): at com.android.browser.DataController$DataControllerHandler.doQueryBookmarkStatus(DataController.java:192)
E/SQLiteOpenHelper( 5409): at com.android.browser.DataController$DataControllerHandler.handleMessage(DataController.java:153)
E/SQLiteOpenHelper( 5409): at com.android.browser.DataController$DataControllerHandler.run(DataController.java:122)
E/DataController( 5409): Error checking for bookmark: android.database.sqlite.SQLiteException: Can't upgrade read-only database from version 0 to 32: /data/data/com.android.browser/databases/browser2.db
General crashing that is ongoing
Code:
E/msm7x30.gralloc( 132): free_impl: genlock_release_lock failed
E/AudioHardwareMSM7X30( 135): updateDeviceInfo: E rx_device 6 and tx_device 11
E/AudioHardwareMSM7X30( 135): updateDeviceInfo: X cur_rx 6 cur_tx 11
E/libgenlock( 639): genlock_release_lock: GENLOCK_IOC_RELEASE failed (err=Invalid argument)
E/libgenlock( 132): genlock_release_lock: GENLOCK_IOC_RELEASE failed (err=Invalid argument)
E/msm7x30.gralloc( 132): free_impl: genlock_release_lock failed
E/libgenlock( 639): genlock_release_lock: GENLOCK_IOC_RELEASE failed (err=Invalid argument)
E/libgenlock( 132): genlock_release_lock: GENLOCK_IOC_RELEASE failed (err=Invalid argument)
E/msm7x30.gralloc( 132): free_impl: genlock_release_lock failed
E/libgenlock( 2327): genlock_release_lock: GENLOCK_IOC_RELEASE failed (err=Invalid argument)
E/libgenlock( 132): genlock_release_lock: GENLOCK_IOC_RELEASE failed (err=Invalid argument)
E/msm7x30.gralloc( 132): free_impl: genlock_release_lock failed
E/libgenlock( 2327): genlock_release_lock: GENLOCK_IOC_RELEASE failed (err=Invalid argument)
E/libgenlock( 132): genlock_release_lock: GENLOCK_IOC_RELEASE failed (err=Invalid argument)
E/msm7x30.gralloc( 132): free_impl: genlock_release_lock failed
E/libgenlock( 2327): genlock_release_lock: GENLOCK_IOC_RELEASE failed (err=Invalid argument)
E/libgenlock( 132): genlock_release_lock: GENLOCK_IOC_RELEASE failed (err=Invalid argument)
E/msm7x30.gralloc( 132): free_impl: genlock_release_lock failed
E/AudioHardwareMSM7X30( 135): updateDeviceInfo: E rx_device 6 and tx_device 11
E/AudioHardwareMSM7X30( 135): updateDeviceInfo: X cur_rx 6 cur_tx 11
I will update it if I get more. Jocala do you want to get on the IRC? We can communicate faster and I can do more troubleshooting.

Hello, i just stumbled upon this and idk if it'd be helpful or anything but thought id mention it.[WIP] - ICS Camera HAL for 2.6 kernel http://forum.xda-developers.com/showthread.php?t=1427030 . Also maybe not usefull but https://gitorious.org/unified-camera-hal/unified-camera-hal/ .
obviously the one is on xda, i just though it might have gone unseen.
I also just wanted to say awesome work, cant wait for the few little bugs to get worked out. Thanx to everyone who has put work into this.

can anyone edit the framework-res.apk to enable on screen keys. i cant get apktool to recompile after i edit the bools.xml and dimens.xml.

dennis96411 said:
Here's what I have so far:
Working:
Cellular network [EDGE/3G/4G/etc]
Wi-Fi
Bluetooth
GPS
Keyboard haptic feedback
Accurate cellular network [H+ for HSPA+ and 3G for UMTS] and battery [1% increment] indicators
CUSTOM BOOT ANIMATIONS! [I installed the CyanogenMod 7 one using ROM Toolbox, looking very awesome every time I start the phone]
Not working:
Camera [See logcat]
Market crashes when attempting to add Google account [Paid apps that uses Market for authentication may not work]
Browser crashes [See logcat]
Email crashes [Current solution is to freeze the app and use an alternative email client]
Exchange services crashes [Same as above]
Most options in Dev Tools crash
Headphone jack [Probably not recognized, will do logcat]
Home key
LED light
Here are some logcats:
Camera
Code:
E/CameraService( 135): Camera HAL module not loaded
E/CameraHolder( 2365): fail to connect Camera
E/CameraHolder( 2365): java.lang.RuntimeException: Fail to connect to camera service
E/CameraHolder( 2365): at android.hardware.Camera.native_setup(Native Method)
E/CameraHolder( 2365): at android.hardware.Camera.<init>(Camera.java:302)
E/CameraHolder( 2365): at android.hardware.Camera.open(Camera.java:264)
E/CameraHolder( 2365): at com.android.camera.CameraHolder.open(CameraHolder.java:131)
E/CameraHolder( 2365): at com.android.camera.Util.openCamera(Util.java:267)
E/CameraHolder( 2365): at com.android.camera.Camera$4.run(Camera.java:1098)
E/CameraHolder( 2365): at java.lang.Thread.run(Thread.java:856)
Browser
Code:
E/libEGL ( 5409): call to OpenGL ES API with no current context (logged once per thread)
E/AndroidRuntime( 5409): FATAL EXCEPTION: pool-1-thread-3
E/AndroidRuntime( 5409): android.database.sqlite.SQLiteException: table bookmarks has 12 columns but 13 values were supplied: , while compiling: INSERT INTO bookmarks SELECT * FROM bookmarks_temp;
E/AndroidRuntime( 5409): at android.database.sqlite.SQLiteCompiledSql.native_compile(Native Method)
E/AndroidRuntime( 5409): at android.database.sqlite.SQLiteCompiledSql.<init>(SQLiteCompiledSql.java:68)
E/AndroidRuntime( 5409): at android.database.sqlite.SQLiteProgram.compileSql(SQLiteProgram.java:143)
E/AndroidRuntime( 5409): at android.database.sqlite.SQLiteProgram.compileAndbindAllArgs(SQLiteProgram.java:361)
E/AndroidRuntime( 5409): at android.database.sqlite.SQLiteStatement.acquireAndLock(SQLiteStatement.java:260)
E/AndroidRuntime( 5409): at android.database.sqlite.SQLiteStatement.executeUpdateDelete(SQLiteStatement.java:84)
E/AndroidRuntime( 5409): at android.database.sqlite.SQLiteDatabase.executeSql(SQLiteDatabase.java:1899)
E/AndroidRuntime( 5409): at android.database.sqlite.SQLiteDatabase.execSQL(SQLiteDatabase.java:1839)
E/AndroidRuntime( 5409): at com.android.browser.provider.BrowserProvider$DatabaseHelper.onUpgrade(BrowserProvider.java:333)
E/AndroidRuntime( 5409): at android.database.sqlite.SQLiteOpenHelper.getWritableDatabase(SQLiteOpenHelper.java:170)
E/AndroidRuntime( 5409): at com.android.browser.provider.BrowserProvider2$DatabaseHelper.importFromBrowserProvider(BrowserProvider2.java:505)
E/AndroidRuntime( 5409): at com.android.browser.provider.BrowserProvider2$DatabaseHelper.onCreate(BrowserProvider2.java:453)
E/AndroidRuntime( 5409): at android.database.sqlite.SQLiteOpenHelper.getWritableDatabase(SQLiteOpenHelper.java:165)
E/AndroidRuntime( 5409): at com.android.browser.provider.SQLiteContentProvider.delete(SQLiteContentProvider.java:178)
E/AndroidRuntime( 5409): at android.content.ContentProvider$Transport.delete(ContentProvider.java:213)
E/AndroidRuntime( 5409): at android.content.ContentResolver.delete(ContentResolver.java:827)
E/AndroidRuntime( 5409): at com.android.browser.Controller$PruneThumbnails.run(Controller.java:377)
E/AndroidRuntime( 5409): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1076)
E/AndroidRuntime( 5409): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:569)
E/AndroidRuntime( 5409): at java.lang.Thread.run(Thread.java:856)
E/SQLiteOpenHelper( 5409): Couldn't open browser2.db for writing (will try read-only):
E/SQLiteOpenHelper( 5409): android.database.sqlite.SQLiteException: table bookmarks has 12 columns but 13 values were supplied: , while compiling: INSERT INTO bookmarks SELECT * FROM bookmarks_temp;
E/SQLiteOpenHelper( 5409): at android.database.sqlite.SQLiteCompiledSql.native_compile(Native Method)
E/SQLiteOpenHelper( 5409): at android.database.sqlite.SQLiteCompiledSql.<init>(SQLiteCompiledSql.java:68)
E/SQLiteOpenHelper( 5409): at android.database.sqlite.SQLiteProgram.compileSql(SQLiteProgram.java:143)
E/SQLiteOpenHelper( 5409): at android.database.sqlite.SQLiteProgram.compileAndbindAllArgs(SQLiteProgram.java:361)
E/SQLiteOpenHelper( 5409): at android.database.sqlite.SQLiteStatement.acquireAndLock(SQLiteStatement.java:260)
E/SQLiteOpenHelper( 5409): at android.database.sqlite.SQLiteStatement.executeUpdateDelete(SQLiteStatement.java:84)
E/SQLiteOpenHelper( 5409): at android.database.sqlite.SQLiteDatabase.executeSql(SQLiteDatabase.java:1899)
E/SQLiteOpenHelper( 5409): at android.database.sqlite.SQLiteDatabase.execSQL(SQLiteDatabase.java:1839)
E/SQLiteOpenHelper( 5409): at com.android.browser.provider.BrowserProvider$DatabaseHelper.onUpgrade(BrowserProvider.java:333)
E/SQLiteOpenHelper( 5409): at android.database.sqlite.SQLiteOpenHelper.getWritableDatabase(SQLiteOpenHelper.java:170)
E/SQLiteOpenHelper( 5409): at com.android.browser.provider.BrowserProvider2$DatabaseHelper.importFromBrowserProvider(BrowserProvider2.java:505)
E/SQLiteOpenHelper( 5409): at com.android.browser.provider.BrowserProvider2$DatabaseHelper.onCreate(BrowserProvider2.java:453)
E/SQLiteOpenHelper( 5409): at android.database.sqlite.SQLiteOpenHelper.getWritableDatabase(SQLiteOpenHelper.java:165)
E/SQLiteOpenHelper( 5409): at android.database.sqlite.SQLiteOpenHelper.getReadableDatabase(SQLiteOpenHelper.java:231)
E/SQLiteOpenHelper( 5409): at com.android.browser.provider.BrowserProvider2.query(BrowserProvider2.java:863)
E/SQLiteOpenHelper( 5409): at android.content.ContentProvider$Transport.query(ContentProvider.java:178)
E/SQLiteOpenHelper( 5409): at android.content.ContentResolver.query(ContentResolver.java:316)
E/SQLiteOpenHelper( 5409): at com.android.browser.DataController$DataControllerHandler.doQueryBookmarkStatus(DataController.java:192)
E/SQLiteOpenHelper( 5409): at com.android.browser.DataController$DataControllerHandler.handleMessage(DataController.java:153)
E/SQLiteOpenHelper( 5409): at com.android.browser.DataController$DataControllerHandler.run(DataController.java:122)
E/DataController( 5409): Error checking for bookmark: android.database.sqlite.SQLiteException: Can't upgrade read-only database from version 0 to 32: /data/data/com.android.browser/databases/browser2.db
General crashing that is ongoing
Code:
E/msm7x30.gralloc( 132): free_impl: genlock_release_lock failed
E/AudioHardwareMSM7X30( 135): updateDeviceInfo: E rx_device 6 and tx_device 11
E/AudioHardwareMSM7X30( 135): updateDeviceInfo: X cur_rx 6 cur_tx 11
E/libgenlock( 639): genlock_release_lock: GENLOCK_IOC_RELEASE failed (err=Invalid argument)
E/libgenlock( 132): genlock_release_lock: GENLOCK_IOC_RELEASE failed (err=Invalid argument)
E/msm7x30.gralloc( 132): free_impl: genlock_release_lock failed
E/libgenlock( 639): genlock_release_lock: GENLOCK_IOC_RELEASE failed (err=Invalid argument)
E/libgenlock( 132): genlock_release_lock: GENLOCK_IOC_RELEASE failed (err=Invalid argument)
E/msm7x30.gralloc( 132): free_impl: genlock_release_lock failed
E/libgenlock( 2327): genlock_release_lock: GENLOCK_IOC_RELEASE failed (err=Invalid argument)
E/libgenlock( 132): genlock_release_lock: GENLOCK_IOC_RELEASE failed (err=Invalid argument)
E/msm7x30.gralloc( 132): free_impl: genlock_release_lock failed
E/libgenlock( 2327): genlock_release_lock: GENLOCK_IOC_RELEASE failed (err=Invalid argument)
E/libgenlock( 132): genlock_release_lock: GENLOCK_IOC_RELEASE failed (err=Invalid argument)
E/msm7x30.gralloc( 132): free_impl: genlock_release_lock failed
E/libgenlock( 2327): genlock_release_lock: GENLOCK_IOC_RELEASE failed (err=Invalid argument)
E/libgenlock( 132): genlock_release_lock: GENLOCK_IOC_RELEASE failed (err=Invalid argument)
E/msm7x30.gralloc( 132): free_impl: genlock_release_lock failed
E/AudioHardwareMSM7X30( 135): updateDeviceInfo: E rx_device 6 and tx_device 11
E/AudioHardwareMSM7X30( 135): updateDeviceInfo: X cur_rx 6 cur_tx 11
I will update it if I get more. Jocala do you want to get on the IRC? We can communicate faster and I can do more troubleshooting.
Click to expand...
Click to collapse
Browser & Gmail work here w/o FCs.
I am testing with a clean phone, gapps only. I've added an IRC channel to my sig.

jocala said:
Browser & Gmail work here w/o FCs.
I am testing with a clean phone, gapps only. I've added an IRC channel to my sig.
Click to expand...
Click to collapse
The IRC site isn't loading for me... :|

dennis96411 said:
The IRC site isn't loading for me... :|
Click to expand...
Click to collapse
works here.
web:
http://webchat.irchighway.net/?channels=#exhibit2
irc client:
irc.irchighway.net #exhibit2

Thanks for this ROM does anyone have any screenshots?

Related

Anyone having market crashes?

I updated to Froyo from CM.
Some market updates/installs are fine. Some cause this crash and the Android GUI restarts (the whole N1 doesn't reboot however).
D/VoldCmdListener( 54): asec list
I/PackageHelper( 652): Size of container 2 MB 689299 bytes
W/dalvikvm( 83): threadid=11: thread exiting with uncaught exception (group=0x4001d7f0)
E/AndroidRuntime( 83): *** FATAL EXCEPTION IN SYSTEM PROCESS: PackageManager
E/AndroidRuntime( 83): java.lang.SecurityException: Requires android.permission.ASEC_CREATE permission
E/AndroidRuntime( 83): at android.os.Parcel.readException(Parcel.java:1247)
E/AndroidRuntime( 83): at android.os.Parcel.readException(Parcel.java:1235)
E/AndroidRuntime( 83): at com.android.internal.app.IMediaContainerService$Stub$Proxy.copyResourceToContainer(IMediaContainerService.java:164)
E/AndroidRuntime( 83): at com.android.server.PackageManagerService$SdInstallArgs.copyApk(PackageManagerService.java:5341)
E/AndroidRuntime( 83): at com.android.server.PackageManagerService$InstallParams.handleStartCopy(PackageManagerService.java:4956)
E/AndroidRuntime( 83): at com.android.server.PackageManagerService$HandlerParams.startCopy(PackageManagerService.java:4815)
E/AndroidRuntime( 83): at com.android.server.PackageManagerService$PackageHandler.doHandleMessage(PackageManagerService.java:470)
E/AndroidRuntime( 83): at com.android.server.PackageManagerService$PackageHandler.handleMessage(PackageManagerService.java:415)
E/AndroidRuntime( 83): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 83): at android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime( 83): at android.os.HandlerThread.run(HandlerThread.java:60)
I believe I get the same issue and log messages when I try to move applications to my sdcard either from the applications menu or by adb command. :/
I have the same error when trying to install the latest version of Neocore.
I have the same problem. Is there a solution ? Would full data wipe help ?
Just did a full data wipe, and it helped for me.
Yeah, have to do full wipe to fix it.
Isn't there any other solutions ?
I don't really feel like wiping now.. :s

SELECT COUNT(*) FROM overrides; error code 11: database disk image is malformed

I post this here in hope it's helpful for anybody who felt in the same issue.
I assume that this issues occurred installing Gmail 2.3.4.1 (Be careful downloading Gmail 2.3.5) for my Ginger yoshi 1.3 fix 32a_b.
I've solved this issue deleting the data for the "google servises framework" application (via application manager).
Here the logcat with the issue:
I/Database( 413): sqlite returned: error code = 11, msg = database corruption at line 45898 of [42537b6056]
I/Database( 413): sqlite returned: error code = 11, msg = database corruption at line 45936 of [42537b6056]
I/Database( 413): sqlite returned: error code = 11, msg = statement aborts at 4: [SELECT COUNT(*) FROM overrides]
I/PowerWidget( 318): Setting up button: toggleNetworkMode
E/SQLiteOpenHelper( 413): Couldn't open gservices.db for writing (will try read-only):
E/SQLiteOpenHelper( 413): android.database.sqlite.SQLiteDatabaseCorruptException: error code 11: database disk image is malformed
E/SQLiteOpenHelper( 413): at android.database.sqlite.SQLiteStatement.native_1x1_long(Native Method)
E/SQLiteOpenHelper( 413): at android.database.sqlite.SQLiteStatement.simpleQueryForLong(SQLiteStatement.java:115)
E/SQLiteOpenHelper( 413): at com.google.android.gsf.gservices.GservicesProvider$DatabaseHelper.onOpen(GservicesProvider.java:108)
E/SQLiteOpenHelper( 413): at android.database.sqlite.SQLiteOpenHelper.getWritableDatabase(SQLiteOpenHelper.java:141)
E/SQLiteOpenHelper( 413): at android.database.sqlite.SQLiteOpenHelper.getReadableDatabase(SQLiteOpenHelper.java:187)
E/SQLiteOpenHelper( 413): at com.google.android.gsf.gservices.GservicesProvider.querySimple(GservicesProvider.java:165)
E/SQLiteOpenHelper( 413): at com.google.android.gsf.gservices.GservicesProvider.query(GservicesProvider.java:157)
E/SQLiteOpenHelper( 413): at android.content.ContentProvider$Transport.query(ContentProvider.java:187)
E/SQLiteOpenHelper( 413): at android.content.ContentResolver.query(ContentResolver.java:271)
E/SQLiteOpenHelper( 413): at com.google.android.gsf.Gservices.getString(Gservices.java:101)
E/SQLiteOpenHelper( 413): at com.google.android.location.LocationMasfClient.<init>(LocationMasfClient.java:159)
E/SQLiteOpenHelper( 413): at com.google.android.location.NetworkLocationService.onCreate(NetworkLocationService.java:41)
E/SQLiteOpenHelper( 413): at android.app.ActivityThread.handleCreateService(ActivityThread.java:2066)
E/SQLiteOpenHelper( 413): at android.app.ActivityThread.access$2500(ActivityThread.java:123)
E/SQLiteOpenHelper( 413): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:993)
E/SQLiteOpenHelper( 413): at android.os.Handler.dispatchMessage(Handler.java:99)
E/SQLiteOpenHelper( 413): at android.os.Looper.loop(Looper.java:130)
E/SQLiteOpenHelper( 413): at android.app.ActivityThread.main(ActivityThread.java:3835)
E/SQLiteOpenHelper( 413): at java.lang.reflect.Method.invokeNative(Native Method)
E/SQLiteOpenHelper( 413): at java.lang.reflect.Method.invoke(Method.java:507)
E/SQLiteOpenHelper( 413): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:847)
E/SQLiteOpenHelper( 413): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:605)
E/SQLiteOpenHelper( 413): at dalvik.system.NativeStart.main(Native Method)
I/Database( 413): sqlite returned: error code = 11, msg = database corruption at line 45898 of [42537b6056]
I/Database( 413): sqlite returned: error code = 11, msg = database corruption at line 45936 of [42537b6056]
I/Database( 413): sqlite returned: error code = 11, msg = statement aborts at 4: [SELECT COUNT(*) FROM overrides]
D/AndroidRuntime( 413): Shutting down VM
W/dalvikvm( 413): threadid=1: thread exiting with uncaught exception (group=0x40018560)
I/StorageNotification( 318): Media {/mnt/sdcard} state changed from {unmounted} -> {checking}
V/NotificationService( 257): Active profile: Default
I/PROFILE ( 257): Group: Gmail containing : com.android.systemui : false
I/PROFILE ( 257): Group: Phone containing : com.android.systemui : false
I/PROFILE ( 257): Group: Calendar containing : com.android.systemui : false
I/PROFILE ( 257): Group: Email containing : com.android.systemui : false
I/PROFILE ( 257): Group: SMS containing : com.android.systemui : false
V/ProfileManager( 257): No active group, returning default: Anderes
V/NotificationService( 257): Pkg: com.android.systemui group: Anderes
E/AndroidRuntime( 413): FATAL EXCEPTION: main
E/AndroidRuntime( 413): java.lang.RuntimeException: Unable to create service com.google.android.location.NetworkLocationService: android.database.sqlite.SQLiteDatabaseCorruptException: error code 11: database disk image is malformed
E/AndroidRuntime( 413): at android.app.ActivityThread.handleCreateService(ActivityThread.java:2076)
E/AndroidRuntime( 413): at android.app.ActivityThread.access$2500(ActivityThread.java:123)
E/AndroidRuntime( 413): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:993)
E/AndroidRuntime( 413): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 413): at android.os.Looper.loop(Looper.java:130)
E/AndroidRuntime( 413): at android.app.ActivityThread.main(ActivityThread.java:3835)
E/AndroidRuntime( 413): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 413): at java.lang.reflect.Method.invoke(Method.java:507)
E/AndroidRuntime( 413): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:847)
E/AndroidRuntime( 413): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:605)
E/AndroidRuntime( 413): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 413): Caused by: android.database.sqlite.SQLiteDatabaseCorruptException: error code 11: database disk image is malformed
E/AndroidRuntime( 413): at android.database.sqlite.SQLiteStatement.native_1x1_long(Native Method)
E/AndroidRuntime( 413): at android.database.sqlite.SQLiteStatement.simpleQueryForLong(SQLiteStatement.java:115)
E/AndroidRuntime( 413): at com.google.android.gsf.gservices.GservicesProvider$DatabaseHelper.onOpen(GservicesProvider.java:108)
E/AndroidRuntime( 413): at android.database.sqlite.SQLiteOpenHelper.getReadableDatabase(SQLiteOpenHelper.java:203)
E/AndroidRuntime( 413): at com.google.android.gsf.gservices.GservicesProvider.querySimple(GservicesProvider.java:165)
E/AndroidRuntime( 413): at com.google.android.gsf.gservices.GservicesProvider.query(GservicesProvider.java:157)
E/AndroidRuntime( 413): at android.content.ContentProvider$Transport.query(ContentProvider.java:187)
E/AndroidRuntime( 413): at android.content.ContentResolver.query(ContentResolver.java:271)
E/AndroidRuntime( 413): at com.google.android.gsf.Gservices.getString(Gservices.java:101)
E/AndroidRuntime( 413): at com.google.android.location.LocationMasfClient.<init>(LocationMasfClient.java:159)
E/AndroidRuntime( 413): at com.google.android.location.NetworkLocationService.onCreate(NetworkLocationService.java:41)
E/AndroidRuntime( 413): at android.app.ActivityThread.handleCreateService(ActivityThread.java:2066)
E/AndroidRuntime( 413): ... 10 more
D/dalvikvm( 413): GC_CONCURRENT freed 281K, 50% free 2796K/5575K, external 0K/0K, paused 6ms+11ms
D/dalvikvm( 257): GC_CONCURRENT freed 470K, 38% free 4966K/7943K, external 36K/528K, paused 10ms+15ms
D/dalvikvm( 257): GC_EXTERNAL_ALLOC freed 7K, 38% free 4958K/7943K, external 36K/528K, paused 163ms
I/SearchManagerService( 257): Building list of searchable activities
Click to expand...
Click to collapse

HellyBean 4.3 bootloop: need help analyzing logcat for culprit

I'm running HB3_Franzy 12 RC the final with devil kernel and have been for a while now. Yesterday, for some unknown reason, my phone suddenly decided to reboot. Now it hangs at the bootanimation.
I was able to posthumously enable adb debugging (see my previous thread for details). I could do a clean install and start again, possibly rescuing some data from the nandroid by buying Titanium Pro (as far as I understood Titanium's playstore page, this would be a paid feaature) or via nandroid manager (as suggested by darkztar1)...
But I would much prefer to find the root of the problem and repair it...
Thus, I humbly ask the more experienced members to help me understand the log and seperate fatal from harmless errors
Just the errors:
--------- beginning of /dev/log/system
E/UserManagerService( 622): Unable to read user list
W/PackageManager( 622): No start tag found in package manager settings
E/AndroidRuntime( 622): Error reporting WTF
E/AndroidRuntime( 622): java.lang.NullPointerException
E/AndroidRuntime( 622): at com.android.internal.os.RuntimeInit.wtf(RuntimeInit.java:329)
E/AndroidRuntime( 622): at android.util.Log$1.onTerribleFailure(Log.java:103)
E/AndroidRuntime( 622): at android.util.Log.wtf(Log.java:278)
E/AndroidRuntime( 622): at android.util.Log.wtf(Log.java:255)
E/AndroidRuntime( 622): at com.android.server.pm.Settings.readLPw(Settings.java:1624)
E/AndroidRuntime( 622): at com.android.server.pm.PackageManagerService.<init>(PackageManagerService.java:1147)
E/AndroidRuntime( 622): at com.android.server.pm.PackageManagerService.main(PackageManagerService.java:1049)
E/AndroidRuntime( 622): at com.android.server.ServerThread.run(SystemServer.java:277)
--------- beginning of /dev/log/main
E/WVMExtractor( 352): Failed to open libwvm.so
E/EventHub( 622): could not get driver version for /dev/input/mice, Not a typewriter
E/cutils-trace( 352): Error opening trace file: No such file or directory (2)
D/ConnectivityService( 622): ConnectivityService starting up
D/ConnectivityService( 622): wifiOnly=false
E/ConnectivityService( 622): Ignoring protectedNetwork 10
E/ConnectivityService( 622): Ignoring protectedNetwork 11
E/ConnectivityService( 622): Ignoring protectedNetwork 12
E/MobileDataStateTracker( 622): default: Ignoring feature request because could not acquire PhoneService
E/MobileDataStateTracker( 622): default: Could not enable APN type "default"
E/WifiConfigStore( 622): Error parsing configurationjava.io.FileNotFoundException: /data/misc/wifi/ipconfig.txt: open failed: ENOENT (No such file or directory)
complete log at pastebin (expires in one month):
http://pastebin.com/peipGuDD
Thanks in advance

[Q] Face unlock closing

Always when i try to set up face unlock, it will crash. This i got from logcat:2014-01-09 19:11:35.644 E 8919/AndroidRuntime: FATAL EXCEPTION: main
java.lang.ExceptionInInitializerError
at com.android.facelock.SetupFaceLock$SetupFaceLockFragment.onCreateView(SetupFaceLock.java:280)
at android.app.FragmentManagerImpl.moveToState(FragmentManager.java:829)
at android.app.FragmentManagerImpl.moveToState(FragmentManager.java:1035)
at android.app.BackStackRecord.run(BackStackRecord.java:635)
at android.app.FragmentManagerImpl.execPendingActions(FragmentManager.java:1399)
at android.app.Activity.performStart(Activity.java:5056)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2054)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2106)
at android.app.ActivityThread.access$700(ActivityThread.java:134)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1217)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:4856)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1007)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:774)
at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:126)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.UnsatisfiedLinkError: Couldn't load facelock_jni: findLibrary returned null
at java.lang.Runtime.loadLibrary(Runtime.java:365)
at java.lang.System.loadLibrary(System.java:535)
at com.android.facelock.FaceLockUtil.<clinit>(FaceLockUtil.java:287)
... 19 more
Any way to fix it? Im running Pure vanilla rom and cocore kernel.
Wait...
It says that findlibrary returned null; maybe i have to get a library for it?

Camera problem

Does anyone know how to fix this?
E/AudioPolicyManagerBase( 4387): getOutput() IOProfile is null.
E/AudioPolicyManagerBase( 4387): getOutput() IOProfile is null.
E/AudioPolicyManagerBase( 4387): getOutput() IOProfile is null.
E/AudioHardwareMSM76XXA( 4387): unsupported AP: Camcorder
E/AudioHardwareMSM76XXA( 4387): unsupported AP: Camcorder
E/EmbeddedLogger( 395): App crashed! Process: com.android.camera
E/EmbeddedLogger( 395): App crashed! Package: com.android.camera v522104132 (5.
0.2322122821.645751.614189)
E/StagefrightRecorder( 4387): Using GOOGLE_PORTRAIT_ROTATION_ENABLE,set KEY_ROTA
TION 0 to Camera
E/EmbeddedLogger( 395): Application Label: Camera
E/AndroidRuntime(12396): FATAL EXCEPTION: main
E/AndroidRuntime(12396): java.lang.IllegalAccessError: tried to access class and
roid.app.ContextImpl from class android.media.MediaRecorder$1
E/AndroidRuntime(12396): at android.media.MediaRecorder$1.handleMessage(M
ediaRecorder.java:1129)
E/AndroidRuntime(12396): at android.os.Handler.dispatchMessage(Handler.ja
va:99)
E/AndroidRuntime(12396): at android.os.Looper.loop(Looper.java:155)
E/AndroidRuntime(12396): at android.app.ActivityThread.main(ActivityThrea
d.java:5536)
E/AndroidRuntime(12396): at java.lang.reflect.Method.invokeNative(Native
Method)
E/AndroidRuntime(12396): at java.lang.reflect.Method.invoke(Method.java:5
11)
E/AndroidRuntime(12396): at com.android.internal.os.ZygoteInit$MethodAndA
rgsCaller.run(ZygoteInit.java:1074)
E/AndroidRuntime(12396): at com.android.internal.os.ZygoteInit.main(Zygot
eInit.java:841)
E/AndroidRuntime(12396): at dalvik.system.NativeStart.main(Native Method)
Click to expand...
Click to collapse
Error is in the Framework.

Categories

Resources