sony

How to fix custom watch face time on Sony SmartWatch 2 after SW2 update [closed]

落花浮王杯 提交于 2019-12-05 18:34:35
Closed . This question needs details or clarity . It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post . Closed 4 years ago . Background Sony released an update for the Sony SmartWatch 2 in December 2014. Whilst the update has added new features to the watch, it has unfortunately caused custom watchfaces to break. I have developed over 100 custom watchfaces which are no longer showing the correct time (hours are out but minutes are ok) and are no longer showing dates. There is a related SO post to the similar problem as

Sony SmartWatch 2 custom watch faces broken since firmware update

雨燕双飞 提交于 2019-12-05 09:53:12
I know this is going to be a duplicate of this -> How to fix custom watch face time on Sony SmartWatch 2 after SW2 update But posting because the original question got closed due to reasons that are not clear to me. Background I have an app in Google Play ( https://play.google.com/store/apps/details?id=com.epix.smartextension.watchfaces ) which provides custom watch faces for Sony SmartWatch 2. It's been there in the store close to an year and was doing well. Problem Recently Sony rolled out a firmware update for SW2. After this update it did bring some welcome features. But along with it came

Android Studio: Android Device Monitor not showing my device

早过忘川 提交于 2019-12-05 00:54:04
My real device is Sony Xperia c6502 with android version 4.3 I'm sure I connect it to my computer and I turn Developer options/ USB debugging on In SDK manager, Google USB driver is already installed. I downloaded Xperia Z Driver from this page: http://developer.sonymobile.com/downloads/drivers/ But I don't know how to use it No PTP mode option in USB Connectivity in my phone My device is not shown in Android Device Monitor and thus I can't run app test on my phone. How to let my Android Studio catch my phone? Some possible solutions: On your notification bar, expand it and click the

Android App Crashes on HTC and Sony Ericsson Phone

核能气质少年 提交于 2019-12-05 00:03:02
问题 We launched the app on the Market today - Nomad. I am getting reports that the app crashes on HTC and Sony Ericsson Phones. I got the following Log report from one of the USER. java.lang.RuntimeException: Unable to start activity ComponentInfo{com.m7.nomad/com.m7.nomad.SplashActivity}: java.lang.UnsupportedOperationException: Can't convert to dimension: type=0x3 at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1956) at android.app.ActivityThread.handleLaunchActivity

Sony Smartwatch SW2 - accelerometer output rate

佐手、 提交于 2019-12-04 21:42:47
From the sample code of the SDK, I can read the accelerometer at 4-5Hz by using: registerListener(listener, Sensor.SensorRates.SENSOR_DELAY_FASTEST, Sensor.SensorInterruptMode.SENSOR_INTERRUPT_ENABLED); but it does not work when using registerFixedRateListener(). How to read accelerometer data from SW2 with higher rate? for example 10Hz, 20Hz... Thanks. I'm able to read values on my SW 2 at 10Hz with disabled interrupts using sensor.registerFixedRateListener(mListener, Sensor.SensorRates.SENSOR_DELAY_FASTEST); However, 10 Hz seems to be the limit. 来源: https://stackoverflow.com/questions

How to download RAW files from A7 API?

99封情书 提交于 2019-12-04 14:15:02
问题 I am working on a simple desktop tethering app for my A7 using the Wi Fi based JSON API. https://developer.sony.com/develop/cameras/ All works well except I cannot download the RAW files. I can tweak things to get full size JPG file which seems to be served from the file system on the camera. for example the following URL seems to address the JPG from SD card. http://myA7camera.info:8080/postview/memory/1000/DCIM/100MSDCF/DSC01353.JPG This URL is coming back from actTakePciture call (I had to

Sony SmartWatch2 : hooking back key

元气小坏坏 提交于 2019-12-04 13:43:07
In control extension for Sony SmartWatch2, I can receive back key through onKey, but how can I prevent extension from terminating? I want to hook back key to do some process, but pressing back key terminates extension. In SampleAdvancedControlExtension, it seems like it is blocking back button by starting new control, but I'm only using single control. public void onKey(int action, int keyCode, long timeStamp) { Log.v(SampleExtensionService.LOG_TAG, "onKey"); if (action == Control.Intents.KEY_ACTION_RELEASE && keyCode == Control.KeyCodes.KEYCODE_BACK) { Log.d(SampleExtensionService.LOG_TAG,

Why isMultipleAdvertisementSupported() returns false, when getBluetoothLeAdvertiser returns an object?

╄→尐↘猪︶ㄣ 提交于 2019-12-04 10:08:08
I am trying to play with BLE transmission on my device. Here is the code I use and the output: // check BLE support Log.i(TAG, "BLE supported: " + getPackageManager().hasSystemFeature(PackageManager.FEATURE_BLUETOOTH_LE)); // true // check BLE transmission support final BluetoothManager bluetoothManager = (BluetoothManager) getSystemService(Context.BLUETOOTH_SERVICE); BluetoothAdapter mBluetoothAdapter = bluetoothManager.getAdapter(); Log.i(TAG, "isMultipleAdvertisementSupported: " + mBluetoothAdapter.isMultipleAdvertisementSupported()); // false Log.i(TAG, "isOffloadedFilteringSupported: " +

Notification: Sony devices do not show any notification

三世轮回 提交于 2019-12-04 05:23:00
问题 I use these lines of code for showing notification in my app but sony devices(xperia p, sola, acro s) does not show any notification. I dont have any problem with other android devices. Intent notificationIntent = new Intent(context, ActivityShowQuestion.class); notificationIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); PendingIntent contentIntent = PendingIntent.getActivity(context, Integer.parseInt(id), notificationIntent,

How to programmatically detect SONY - Stamina device energy profile is ON

二次信任 提交于 2019-12-04 02:56:57
I want to notify user that my app will not work properly if he has SONY android phone with STAMINE energy profile ON. This profile is blocking AlarmManager and device is not waked up when I want. Currently, there is no official way to detect if the STAMINA energy profile is selected. However, if there is enough community demand we may be able to open this up. You could check it via Settings.Secure.getInt(contentResolver, "somc.stamina_mode", 0) == 1 Works at least on the Sony Xperia XZ1 Compact (8.0.0) 来源: https://stackoverflow.com/questions/18845479/how-to-programmatically-detect-sony-stamina