Questions tagged [motorola]

Motorola is an American multinational telecommunications company which designs and sells wireless network infrastructure equipment.

416 questions
58
votes
6 answers

Motorola devices : org.threeten.bp.DateTimeException when parsing a date in ThreeTen

I have a very weird behaviour on some Motorola devices where LocalDateTime.now() is returning 0000-00-00T00:00:00.0 with ThreeTenABP. The code is as follow: @Override protected void onResume() { super.onResume(); if…
Romain Piel
  • 11,017
  • 15
  • 71
  • 106
49
votes
5 answers

How to prevent Android bluetooth RFCOMM connection from dying immediately after .connect()?

This problem has been solved! Thanks a lot to Brad, Denis and junkie! You're the heroes! :) This is the working code. It connects to Zeemote and reads data from it. ===== Code ===== public class ZeeTest extends Activity { @Override public…
Gilead
  • 1,516
  • 2
  • 18
  • 26
19
votes
3 answers

Android - Outgoing transactions from this process must be FLAG_ONEWAY

I'm facing two issues when running my Android application on Moto G6 device (on another devices or emulator there is no such problem). In my app, there is a simple LoginActivity that after successful login starts MainActivity (in onPostExecute of…
zdenda.online
  • 2,451
  • 3
  • 23
  • 45
14
votes
2 answers

UnsupportedOperationException: Tried to obtain display from a Context not associated with one

I'm getting UnsupportedOperationException crash on live app. All the crashes are associated with Moto Android 11 devices. Can see that it's somehow related to onKeyUp. But still no clue how to reproduce or fix this. Any help would be…
Shahal
  • 1,008
  • 1
  • 11
  • 29
14
votes
7 answers

How to set up android SDK for command line development on linux?

I'm trying to set up the android SDK to develop a simple program on the command line in Linux (Ubuntu 9.10). I tried eclipse, but it has know problems running on Ubuntu, so I gave up on it. Here's what I've done so far: downloaded …
user292344
  • 351
  • 1
  • 5
  • 19
13
votes
4 answers

Connecting Android Phone With ADB

I recently bought a new phone (Motorola Electrify) and I'm trying to connect it with ADB but so far without luck. What I did: Enable USB debugging on the phone Connect phone to my iMac using the USB cable (the display indicates that it's…
Joris Weimar
  • 4,783
  • 4
  • 33
  • 53
12
votes
2 answers

What does the BEQ instruction do exactly?

I have the following assembly code snippet I am trying to understand. It is assembly for a MC68332 microcontroller. LOOP some instructions some more instructions BEQ LOOP I've googled BEQ and I have found it means branch on result zero, but…
jazzybazz
  • 1,807
  • 4
  • 17
  • 21
12
votes
2 answers

Magnetc Stripe Reader Issue in Motorola MC65 device

I have an issue with Magnet Stripe Reader in Motorola MC 65 ( OS : Windows Mobile ). If I try to open the Reader, I'm getting an exception of MSR_Open MSR_Err_OpenFailure. Code: Symbol.MagStripe.Device MyDevice = new…
Silju M.C
  • 121
  • 3
11
votes
0 answers

Issue affection only users on Android 11 version

My app has about 20k daily active users and there is a fatal crash affecting only android 11 users that I'm not able to identify the root cause. the stack trace is Fatal Exception: android.app.RemoteServiceException: Attempt to invoke virtual method…
Rafael Lima
  • 3,079
  • 3
  • 41
  • 105
11
votes
0 answers

Notification throws RemoteServiceException on Motorola's device with Android 7

After the app received the notification and then build and post a device notification, the notification works fine on all other devices but not with Motorola's devices like Moo Z Droid, DROID Turbo2, Moto G(4) Plus, Moto G(5) Plus etc. and only with…
lannyf
  • 9,865
  • 12
  • 70
  • 152
11
votes
6 answers

Writing an OS for Motorola 68K processor. Can I emulate it? And can I test-drive OS development?

Next term, I'll need to write a basic operating system for Motorola 68K processor as part of a course lab material. Is there a Linux emulator of a basic hardware setup with that processor? So my partners and I can debug quicker on our computers…
ulver
  • 1,521
  • 16
  • 29
9
votes
2 answers

devicePolicyManager.lockNow() is not working for Motorola Tablets

public final static void lockDevice() { try { if (devicePolicyManager.isAdminActive(adminComponent)) { devicePolicyManager.lockNow(); } } catch (final Exception…
PC.
  • 6,870
  • 5
  • 36
  • 71
9
votes
1 answer

Android MediaPlayer - position skips around while buffering

I am experiencing a strange behavior while streaming music on some devices. When the audio first starts playing, the position jumps around and plays erratically until the buffering has fully completed. I began with the sample code from Tutorials…
Evelyn
  • 2,588
  • 3
  • 22
  • 47
9
votes
1 answer

Android application crashing on Motorola defy reason : Can't open file for reading

I have been working on an Android application for last couple of weeks. I have been testing it on Samsung s3 and HTC one without any issue. However I brought Motorola defy and while started testing on it, application starts crashing. After looking…
iPhoneDeveloper
  • 179
  • 1
  • 8
8
votes
1 answer

Moto G5 Plus can't connect via Socket to a local server

I have an application where the smartphone must connect via SSLSocket to a local server. I tested my app on 5 different smartphones: Moto G2 (6.0), Redmi 3S (6.0.1), LG K5 (6.0), Moto G5 Plus (7.1.1) and OnePlus 5 (8.0). The Moto G5 Plus was the…
1
2 3
27 28