Only can get into download mode
Tried getting into recovery mode cant
what are my options from here?
tryed to use Original LG Firmware
keeps on crashing giving me an error
See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.
************** Exception Text **************
System.ArgumentOutOfRangeException: Specified argument was out of the range of valid values.
Parameter name: index
at System.Linq.Enumerable.ElementAt[TSource](IEnumerable`1 source, Int32 index)
at Original_LG_Firmware.Form1.DownloadFile(String url)
at Original_LG_Firmware.Form1.GetROM()
at Original_LG_Firmware.Form1.button1_Click(Object sender, EventArgs e)
at System.Windows.Forms.Control.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ButtonBase.WndProc(Message& m)
at System.Windows.Forms.Button.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
************** Loaded Assemblies **************
mscorlib
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.1 (RTMRel.030319-0100)
CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
----------------------------------------
Original LG Firmware
Assembly Version: 1.0.0.0
Win32 Version: 1.0.0.0
CodeBase: file:///C:/Users/Admin/Desktop/Original%20LG%20Firmware.exe
----------------------------------------
System.Windows.Forms
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.1 built by: RTMRel
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System.Drawing
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.1 built by: RTMRel
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
System
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.1 built by: RTMRel
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Xml
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.1 built by: RTMRel
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
System.Configuration
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.1 (RTMRel.030319-0100)
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Core
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.1 built by: RTMRel
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
----------------------------------------
************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.
For example:
<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>
When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.
so if anyone can post a kdz of a rom for my phone would be helpful
LGE970
Will this work?
http://forum.xda-developers.com/showthread.php?t=1984545
Need lg official or just rom thats in kdz file format
Need lg official or just rom thats in kdz file format so i can flash in download mode
but i will try it
That is the original shipped ROM, check out the irc if you need more info on the .tot file.
#lg-optimus-g
-Sent from my LGOG on AT&T-
Related
Hallo!
It seems that I have a comprehension problem regarding fragments and their use together with map views.
In my app (only für Android >= 4.0.0) I am using a layout with a container. This container shall be filled with either a normal text view, a map view or a settings fragment. The switching between the two first views are done depending on a switch in the settings fragment.
To switch between the fragments I implemented a setView() method in my MainActivity. Switching from Map to Settings works fine. Just as replacing the map view fragment with the text view fragment. But a soon as I try to replace the text view fragment with my map fragment an exception is thrown
I tried a lot of things to avoid this, but now I gave up
Maybe it helps... so here are some sections of my code:
1) setView()
Code:
protected void setView(boolean setMap) {
if (setMap == true) {
Log.i(TAG, "Inflating Google Maps fragment");
this.fragmentMap = new FragmentMap();
if (this.fragmentText != null) {
Log.d(TAG, "Removing text fragment");
getFragmentManager().beginTransaction()
.remove(this.fragmentText).commit();
}
Log.d(TAG, "Replacing container with map fragment");
getFragmentManager().beginTransaction()
.replace(R.id.container, this.fragmentMap).commit();
this.useMap = true;
} else if (setMap == false) {
Log.i(TAG, "Inflating text fragment");
this.fragmentText = new FragmentText();
if (this.fragmentMap != null) {
Log.d(TAG, "Removing map fragment");
getFragmentManager().beginTransaction()
.remove(this.fragmentMap).commit();
}
Log.d(TAG, "Replacing container with text fragment");
getFragmentManager().beginTransaction()
.replace(R.id.container, this.fragmentText).commit();
this.useMap = false;
}
}
The coresponding map fragment class uses this method:
Code:
public class FragmentMap extends Fragment {
private View view;
[...]
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Be sure to inflate only one map view
if (view == null) {
Log.d(TAG, "We need to inflate a new map view...");
view = inflater.inflate(R.layout.layout_map, container, false);
Log.d(TAG, "...ok");
} else {
Log.d(TAG,
"No need to inflate a new map view. We already have one ;)");
}
[...]
return view;
}
From within my settings fragment I call the setView() method inside the MainActivity.
As said it works if I switch from fragmentMap to fragmentText. Switching from text to map throws the following:
10-10 20:12:41.234: D/FragmentMap(5794): onCreate()
10-10 20:12:41.234: D/FragmentMap(5794): We need to inflate a new map view...
10-10 20:12:41.241: D/AndroidRuntime(5794): Shutting down VM
10-10 20:12:41.241: W/dalvikvm(5794): threadid=1: thread exiting with uncaught exception (group=0x40a96300)
10-10 20:12:41.257: E/AndroidRuntime(5794): FATAL EXCEPTION: main
10-10 20:12:41.257: E/AndroidRuntime(5794): android.view.InflateException: Binary XML file line #51: Error inflating class <unknown>
10-10 20:12:41.257: E/AndroidRuntime(5794): at android.view.LayoutInflater.createView(LayoutInflater.java:613)
10-10 20:12:41.257: E/AndroidRuntime(5794): at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:687)
10-10 20:12:41.257: E/AndroidRuntime(5794): at android.view.LayoutInflater.rInflate(LayoutInflater.java:746)
10-10 20:12:41.257: E/AndroidRuntime(5794): at android.view.LayoutInflater.rInflate(LayoutInflater.java:749)
10-10 20:12:41.257: E/AndroidRuntime(5794): at android.view.LayoutInflater.inflate(LayoutInflater.java:489)
10-10 20:12:41.257: E/AndroidRuntime(5794): at android.view.LayoutInflater.inflate(LayoutInflater.java:396)
10-10 20:12:41.257: E/AndroidRuntime(5794): at com.example.fragment5.FragmentMap.onCreateView(FragmentMap.java:69)
10-10 20:12:41.257: E/AndroidRuntime(5794): at android.app.FragmentManagerImpl.moveToState(FragmentManager.java:829)
10-10 20:12:41.257: E/AndroidRuntime(5794): at android.app.FragmentManagerImpl.moveToState(FragmentManager.java:1035)
10-10 20:12:41.257: E/AndroidRuntime(5794): at android.app.BackStackRecord.run(BackStackRecord.java:635)
10-10 20:12:41.257: E/AndroidRuntime(5794): at android.app.FragmentManagerImpl.execPendingActions(FragmentManager.java:1397)
10-10 20:12:41.257: E/AndroidRuntime(5794): at android.app.FragmentManagerImpl$1.run(FragmentManager.java:426)
10-10 20:12:41.257: E/AndroidRuntime(5794): at android.os.Handler.handleCallback(Handler.java:615)
10-10 20:12:41.257: E/AndroidRuntime(5794): at android.os.Handler.dispatchMessage(Handler.java:92)
10-10 20:12:41.257: E/AndroidRuntime(5794): at android.os.Looper.loop(Looper.java:137)
10-10 20:12:41.257: E/AndroidRuntime(5794): at android.app.ActivityThread.main(ActivityThread.java:4931)
10-10 20:12:41.257: E/AndroidRuntime(5794): at java.lang.reflect.Method.invokeNative(Native Method)
10-10 20:12:41.257: E/AndroidRuntime(5794): at java.lang.reflect.Method.invoke(Method.java:511)
10-10 20:12:41.257: E/AndroidRuntime(5794): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:791)
10-10 20:12:41.257: E/AndroidRuntime(5794): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:558)
10-10 20:12:41.257: E/AndroidRuntime(5794): at dalvik.system.NativeStart.main(Native Method)
10-10 20:12:41.257: E/AndroidRuntime(5794): Caused by: java.lang.reflect.InvocationTargetException
10-10 20:12:41.257: E/AndroidRuntime(5794): at java.lang.reflect.Constructor.constructNative(Native Method)
10-10 20:12:41.257: E/AndroidRuntime(5794): at java.lang.reflect.Constructor.newInstance(Constructor.java:417)
10-10 20:12:41.257: E/AndroidRuntime(5794): at android.view.LayoutInflater.createView(LayoutInflater.java:587)
10-10 20:12:41.257: E/AndroidRuntime(5794): ... 20 more
10-10 20:12:41.257: E/AndroidRuntime(5794): Caused by: java.lang.IllegalStateException: You are only allowed to have a single MapView in a MapActivity
10-10 20:12:41.257: E/AndroidRuntime(5794): at com.google.android.maps.MapActivity.setupMapView(MapActivity.java:397)
10-10 20:12:41.257: E/AndroidRuntime(5794): at com.google.android.maps.MapView.<init>(MapView.java:289)
10-10 20:12:41.257: E/AndroidRuntime(5794): at com.google.android.maps.MapView.<init>(MapView.java:264)
10-10 20:12:41.257: E/AndroidRuntime(5794): at com.google.android.maps.MapView.<init>(MapView.java:247)
10-10 20:12:41.257: E/AndroidRuntime(5794): ... 23 more
Click to expand...
Click to collapse
Does anyone can help me?
Thank you very much!!!
Today I Will Tell
[HOW TO MAKE A SIMPLE APPLICATION TO ADD BACKGROUND IMAGE IN THE FORM MENU]
Okay Direct Only
Software required:
- Eclipse Gallileo
- Android SDK windows (in this practice, Raqheel not use the SDK bundle)
- ADT 10:00
- Jdk-6u10-windows-i586
The steps:
- Open Eclipse Gallileo, then select the Help menu, select Install New Software.
- Locate the directory where the ADT in your directory by selecting the Archive ... button, then name the new software that will be installed in the Eclipse Gallileo. Here Afrizal love Android Plugins name. Then click OK, and follow the further instructions until installation is complete and appears request to restart Eclipse Gallileo.
- Select Window - Preferences, select the Android menu, then enter the location of the directory where the SDK is via the Browse ..., then select Apply, and Ok.
- Create an Android Virtual Device (AVD) by using the menu Window - Android SDK and AVD Manager, select New and create a new setting for the virtual device that readers want. Here, Afrizal will create a AVD for Froyo (Android 2.2).
- Once completed, we began to create Android applications with a select menu File - New - Android Project. Form contents with the following conditions:
Project Name: try (name may be customized desires)
Application Name: try (name may be customized desires)
Build Target: Android tick for options 2.2
Package Name: com.num (name may be customized desire, but must start with the word "com. (Name)")
Min SDK Version: 8 (adjust the API target)
Then Finish. 2 Create a new layout in the folder res / layout with numone name and type numtwo with Android XML File. Then create 2 new class in the folder src / com.num with numone name and numtwo with type Class. Then copy the source code below in accordance with the xml name and class of each and then Save.
Source code:
Code:
main.xml
<? Xml version = "1.0" encoding = "utf-8"?>
<AbsoluteLayout
android: id = "@ + id/widget0"
android: layout_width = "fill_parent"
android: layout_height = "fill_parent"
android: background = "@ drawable / mypic"
xmlns: android = "http://schemas.android.com/apk/res/android">
<Button
android: id = "@ + id / name"
android: layout_width = "wrap_content"
android: layout_height = "wrap_content"
android: text = "Name"
android: layout_x = "137dp"
android: layout_y = "23dp" />
<Button
android: id = "@ + id / class"
android: layout_width = "fill_parent"
android: layout_height = "wrap_content"
android: text = "Class"
android: layout_x = "0DP"
android: layout_y = "75dp" />
<Button
android: id = "@ + id / NPM"
android: layout_width = "wrap_content"
android: layout_height = "wrap_content"
android: text = "N P M"
android: layout_x = "136dp"
android: layout_y = "128dp" />
</ AbsoluteLayout>
numone.xml
<? Xml version = "1.0" encoding = "utf-8"?>
<AbsoluteLayout
android: id = "@ + id/widget0"
android: layout_width = "fill_parent"
android: layout_height = "fill_parent"
xmlns: android = "http://schemas.android.com/apk/res/android">
<TextView
android: id = "@ + id / txtnama"
android: layout_width = "fill_parent"
android: layout_height = "wrap_content"
android: text = "my name"
android: textSize = "27sp"
android: typeface = "monospace"
android: textStyle = "bold"
android: gravity = "center"
android: layout_x = "0DP"
android: layout_y = "136dp" />
<TextView
android: id = "@ + id / ketsatu"
android: layout_width = "fill_parent"
android: layout_height = "wrap_content"
android: text = "Raqheelcaze"
android: textSize = "27sp"
android: typeface = "monospace"
android: textStyle = "bold"
android: gravity = "center"
android: layout_x = "0DP"
android: layout_y = "179dp" />
</ AbsoluteLayout>
numtwo.xml
<? Xml version = "1.0" encoding = "utf-8"?>
<AbsoluteLayout
android: id = "@ + id/widget0"
android: layout_width = "fill_parent"
android: layout_height = "fill_parent"
xmlns: android = "http://schemas.android.com/apk/res/android">
<TextView
android: id = "@ + id / txtkelas"
android: layout_width = "fill_parent"
android: layout_height = "wrap_content"
android: text = "class I"
android: textSize = "27sp"
android: typeface = "monospace"
android: textStyle = "bold"
android: gravity = "center"
android: layout_x = "0DP"
android: layout_y = "136dp" />
<TextView
android: id = "@ + id / ketdua"
android: layout_width = "fill_parent"
android: layout_height = "wrap_content"
android: text = "4KB04"
android: textSize = "27sp"
android: typeface = "monospace"
android: textStyle = "bold"
android: gravity = "center"
android: layout_x = "0DP"
android: layout_y = "179dp" />
</ AbsoluteLayout>
numthree.xml
<? Xml version = "1.0" encoding = "utf-8"?>
<AbsoluteLayout
android: id = "@ + id/widget0"
android: layout_width = "fill_parent"
android: layout_height = "fill_parent"
xmlns: android = "http://schemas.android.com/apk/res/android">
<TextView
android: id = "@ + id / txtnpm"
android: layout_width = "fill_parent"
android: layout_height = "wrap_content"
android: text = "NPM me"
android: textSize = "27sp"
android: typeface = "monospace"
android: textStyle = "bold"
android: gravity = "center"
android: layout_x = "0DP"
android: layout_y = "136dp" />
<TextView
android: id = "@ + id / kettiga"
android: layout_width = "fill_parent"
android: layout_height = "wrap_content"
android: text = "20109642"
android: textSize = "27sp"
android: typeface = "monospace"
android: textStyle = "bold"
android: gravity = "center"
android: layout_x = "0DP"
android: layout_y = "179dp" />
</ AbsoluteLayout>
coba.java
com.num package;
android.app.Activity import;
android.os.Bundle import;
android.content.Intent import;
android.view.View import;
android.view.View.OnClickListener import;
public class num extends Activity implements OnClickListener {
/ ** Called when the activity is first created. * /
@ Override
public void onCreate (Bundle savedInstanceState) {
super.onCreate (savedInstanceState);
setContentView (R.layout.main);
View name = findViewById (R.id.nama);
nama.setOnClickListener (this);
View class = findViewById (R.id.kelas);
kelas.setOnClickListener (this);
View NPM = findViewById (R.id.npm);
npm.setOnClickListener (this);
}
public void onClick (View v) {
switch (v.getId ()) {
R.id.nama case:
Inten1 intent = new Intent (num.this, numone.class);
num.this.startActivity (inten1);
break;
R.id.kelas case:
Inten2 intent = new Intent (num.this, numtwo.class);
num.this.startActivity (inten2);
break;
R.id.npm case:
Inten3 intent = new Intent (num.this, numthree.class);
num.this.startActivity (inten3);
break;
}}}
numone.java
com.num package;
android.app.Activity import;
android.os.Bundle import;
public class extends Activity {numone
public void onCreate (Bundle savedInstanceState)
{
super.onCreate (savedInstanceState);
setContentView (R.layout.numone);
}}
numtwo.java
com.num package;
android.app.Activity import;
android.os.Bundle import;
public class extends Activity {numtwo
public void onCreate (Bundle savedInstanceState)
{
super.onCreate (savedInstanceState);
setContentView (R.layout.numtwo);
}}
numthree.java
com.num package;
android.app.Activity import;
android.os.Bundle import;
public class extends Activity {numthree
public void onCreate (Bundle savedInstanceState)
{
super.onCreate (savedInstanceState);
setContentView (R.layout.numthree);
}}
*
Create a new folder in the res / layout as the "drawable", then copy the image to be inserted into form. In this project, Raqheel images with mypic name. Sign in to AndroidManifest.xml and then copy the source code to AndroidManifest.xml below.
Code:
AndroidManifest.xml
<? Xml version = "1.0" encoding = "utf-8"?>
<Manifest xmlns: android = "http://schemas.android.com/apk/res/android"
package = "com.num"
android: versionCode = "1"
android: versionName = "1.0">
<uses-sdk android:minSdkVersion="8" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<Activity android: name = ". Num"
android: label = "@ string / APP_NAME">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</ Intent-filter>
</ Activity>
<activity android:name=".numone"> </ activity>
<activity android:name=".numtwo"> </ activity>
<activity android:name=".numthree"> </ activity>
</ Application>
</ Manifest>
Then Save. After that, click Run As - Android Application. Wait until the process is complete, and you can see the results.
Thank You For Reading This Guide
Any Ss of the app..
!!!...F4t3rn!Ty L!3S W!T}{ ET3rn!Ty...!!!!
***LooK WithiN YourselF***
#CAN U DIG THIS SUCKAAAA#
plss help whit this error systemui FC when hit ltooglte for mobile data on/off on lidroid power wiget full log is in attachment
HTML:
build.board: MSM8960
build.bootloader: s1
build.brand: Sony
build.cpu_abi: armeabi-v7a
build.cpu_abi2: armeabi
build.device: C5303
build.display: [email protected]_V_4.0_By_DuLe
build.fingerprint: Sony/C5303_1272-4891/C5303:4.1.2/12.0.A.2.254/Aff_nw:user/release-keys
build.hardware: qcom
build.host: BuildHost
build.id: 12.0.A.2.254
build.manufacturer: Sony
build.model: C5303
build.product: C5303_1272-4891
build.radio: unknown
build.serial: CB51243RV0
build.tags: release-keys
build.time: 1376471455000
build.type: user
build.user: BuildUser
version.codename: REL
version.incremental: Aff_nw
version.release: 4.1.2
version.sdk_int: 16
10-10 22:10:02.172 I/sysmon-tsens_tz_sensor0(382): sensor_work - read value = 450
10-10 22:10:02.412 W/dalvikvm(23054): threadid=1: thread exiting with uncaught exception (group=0x420f4650)
10-10 22:10:02.412 D/ConnectivityService(705): getMobileDataEnabled returning true
10-10 22:10:02.432 E/AndroidRuntime(23054): FATAL EXCEPTION: main
10-10 22:10:02.432 E/AndroidRuntime(23054): java.lang.SecurityException: ConnectivityService: Neither user 10168 nor current process has android.permission.CHANGE_NETWORK_STATE.
10-10 22:10:02.432 E/AndroidRuntime(23054): at android.os.Parcel.readException(Parcel.java:1436)
10-10 22:10:02.432 E/AndroidRuntime(23054): at android.os.Parcel.readException(Parcel.java:1389)
10-10 22:10:02.432 E/AndroidRuntime(23054): at android.net.IConnectivityManager$Stub$Proxy.setMobileDataEnabled(IConnectivityManager.java:1091)
10-10 22:10:02.432 E/AndroidRuntime(23054): at android.net.ConnectivityManager.setMobileDataEnabled(ConnectivityManager.java:624)
10-10 22:10:02.432 E/AndroidRuntime(23054): at com.lidroid.systemui.quickpanel.MobileDataButton.toggleState(MobileDataButton.java)
10-10 22:10:02.432 E/AndroidRuntime(23054): at com.lidroid.systemui.quickpanel.PowerButton$2.onClick(PowerButton.java:181)
10-10 22:10:02.432 E/AndroidRuntime(23054): at android.view.View.performClick(View.java:4171)
10-10 22:10:02.432 E/AndroidRuntime(23054): at android.view.View$PerformClick.run(View.java:17186)
10-10 22:10:02.432 E/AndroidRuntime(23054): at android.os.Handler.handleCallback(Handler.java:615)
10-10 22:10:02.432 E/AndroidRuntime(23054): at android.os.Handler.dispatchMessage(Handler.java:92)
10-10 22:10:02.432 E/AndroidRuntime(23054): at android.os.Looper.loop(Looper.java:213)
10-10 22:10:02.432 E/AndroidRuntime(23054): at android.app.ActivityThread.main(ActivityThread.java:4793)
10-10 22:10:02.432 E/AndroidRuntime(23054): at java.lang.reflect.Method.invokeNative(Native Method)
10-10 22:10:02.432 E/AndroidRuntime(23054): at java.lang.reflect.Method.invoke(Method.java:511)
10-10 22:10:02.432 E/AndroidRuntime(23054): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:789)
10-10 22:10:02.432 E/AndroidRuntime(23054): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:556)
10-10 22:10:02.432 E/AndroidRuntime(23054): at dalvik.system.NativeStart.main(Native Method)
10-10 22:10:02.522 D/ALSAStreamOps(389): setParameters(): keyRouting with device 0x2
10-10 22:10:02.522 D/ALSADevice(389): route: devices 0x2 in mode 0
10-10 22:10:02.522 D/alsa_ucm(389): snd_use_case_set(): uc_mgr 0x401c6fb8 identifier _enadev value xLoud Speaker
10-10 22:10:02.522 D/alsa_ucm(389): Set mixer controls for HiFi enable 1
10-10 22:10:02.522 D/alsa_ucm(389): Setting mixer control: SLIMBUS_0_RX Audio Mixer MultiMedia1, value: 1
10-10 22:10:02.522 D/alsa_ucm(389): Set mixer controls for Play Lowlatency Music enable 1
Any one whant to help?
Build version: 1.0.2b
Build date: 2016-03-11 18:01:26
Current date: 2016-03-13 00:32:22
Device: Micromax AQ4501
Stack trace:
java.lang.IllegalArgumentException: View=com.android.internal.policy.PhoneWindow$DecorView{cf004 V.E...... R......D 0,0-480,263} not attached to window manager
at android.view.WindowManagerGlobal.findViewLocked(WindowManagerGlobal.java:424)
at android.view.WindowManagerGlobal.removeView(WindowManagerGlobal.java:350)
at android.view.WindowManagerImpl.removeViewImmediate(WindowManagerImpl.java:118)
at android.app.Dialog.dismissDialog(Dialog.java:362)
at android.app.Dialog.dismiss(Dialog.java:345)
at com.xda.labs.one.ui.thread.ThreadUnreadPostHelper.run(Unknown Source)
at com.xda.labs.one.api.retrofit.RetrofitPostClient$2.failure(Unknown Source)
at retrofit.CallbackRunnable$2.run(Unknown Source)
at android.os.Handler.handleCallback(Handler.java:739)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:148)
at android.app.ActivityThread.main(ActivityThread.java:5456)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
sent from sprout4?
I'm having an issue that I've been trying to fix for a month now, everytime an app tries to use the GPS, my phone crash and reboots. It happens with all roms except stock. Any idea what it could be?
build.board: MSM8916
build.bootloader: 0x8020
build.brand: Motorola
build.cpu_abi: armeabi-v7a
build.cpu_abi2: armeabi
build.device: surnia_umts
build.display: slim_surnia-userdebug 7.1.2 NJH47B 11e90beeff test-keys
build.fingerprint: motorola/surnia_retus/surnia_umts:5.0.2/LXI22.50-24.1/1:user/release-keys
build.hardware: qcom
build.host: autobuild
build.id: NJH47B
build.manufacturer: Motorola
build.model: XT1527
build.product: Moto E LTE (2nd gen)
build.radio: M8916_2020629.41.03.21.51R
build.serial: TA0930D46O
build.tags: test-keys
build.time: 1498185618000
build.type: userdebug
build.user: jenkins
version.codename: REL
version.incremental: 11e90beeff
version.release: 7.1.2
version.sdk_int: 25
--------- beginning of system
--------- beginning of crash
07-06 00:50:50.860 F/libc (1651): Fatal signal 11 (SIGSEGV), code 1, fault addr 0x0 in tid 1759 (android.bg)
07-06 00:50:51.013 F/DEBUG (4923): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
07-06 00:50:51.013 F/DEBUG (4923): SLIM Version: 'Slim-7.1.2.build.0.29-BETA-20170623-0440'
07-06 00:50:51.013 F/DEBUG (4923): Build fingerprint: 'motorola/surnia_retus/surnia_umts:5.0.2/LXI22.50-24.1/1:user/release-keys'
07-06 00:50:51.013 F/DEBUG (4923): Revision: '0'
07-06 00:50:51.013 F/DEBUG (4923): ABI: 'arm'
07-06 00:50:51.014 F/DEBUG (4923): pid: 1651, tid: 1759, name: android.bg >>> system_server <<<
07-06 00:50:51.014 F/DEBUG (4923): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x0
07-06 00:50:51.014 F/DEBUG (4923): r0 97bfb100 r1 00000001 r2 00000000 r3 0000001c
07-06 00:50:51.014 F/DEBUG (4923): r4 adc05030 r5 a0180340 r6 97bfb100 r7 00000001
07-06 00:50:51.014 F/DEBUG (4923): r8 00000000 r9 b4285900 sl 00000001 fp a1d61198
07-06 00:50:51.014 F/DEBUG (4923): ip 00000008 sp a0180318 lr b3356d71 pc 00000000 cpsr 60070010
07-06 00:50:51.017 F/DEBUG (4923):
07-06 00:50:51.017 F/DEBUG (4923): backtrace:
07-06 00:50:51.018 F/DEBUG (4923): #00 pc 00000000 <unknown>
07-06 00:50:51.018 F/DEBUG (4923): #01 pc 00017d6f /system/lib/libandroid_servers.so
07-06 00:50:51.018 F/DEBUG (4923): #02 pc 0119f435 /data/dalvik-cache/arm/[email protected]@[email protected] (offset 0xc9b000)
--------- beginning of main
07-06 00:51:22.911 D/NetworkMonitor/NetworkAgentInfo [WIFI () - 101]( 5171): PROBE_DNS OK 38ms, www.google.com=172.217.0.228
07-06 00:51:22.914 D/NetworkMonitor/NetworkAgentInfo [WIFI () - 101]( 5171): PROBE_DNS OK 41ms, connectivitycheck.gstatic.com=172.217.2.99
07-06 00:51:22.977 D/NetworkMonitor/NetworkAgentInfo [WIFI () - 101]( 5171): PROBE_HTTP http://connectivitycheck.gstatic.com/generate_204 time=59ms ret=204 headers={null=[HTTP/1.1 204 No Content], Content-Length=[0], Date=[Thu, 06 Jul 2017 04:51:23 GMT], X-Android-Received-Millis=[1499316682975], X-Android-Response-Source=[NETWORK 204], X-Android-Selected-Protocol=[http/1.1], X-Android-Sent-Millis=[1499316682950]}
07-06 00:51:23.094 D/NetworkMonitor/NetworkAgentInfo [WIFI () - 101]( 5171): PROBE_HTTPS https://www.google.com/generate_204 time=176ms ret=204 headers={null=[HTTP/1.1 204 No Content], Alt-Svc=[quic=":443"; ma=2592000; v="39,38,37,36,35"], Content-Length=[0], Date=[Thu, 06 Jul 2017 04:51:23 GMT], X-Android-Received-Millis=[1499316683092], X-Android-Response-Source=[NETWORK 204], X-Android-Selected-Protocol=[http/1.1], X-Android-Sent-Millis=[1499316683060]}
Click to expand...
Click to collapse
Sorry for the spam down there, couldn't post the logcat since I didn't have 10 posts
..
..
..
..
..
..
..