A framework for communicating with Apple's mobile devices such as iPhones, iPads, and iPods.
Questions tagged [mobiledevice.framework]
9 questions
11
votes
2 answers
How Do I get Battery Charge Cycles from a connected iOS device?
I'm using MobileDevice.framework in an OS X application and I've been able to get how charged the battery of an iOS device connected over USB is using the AMDeviceCopyValue(device, domain, key) function with the arguments "com.apple.mobile.battery"…

ArtOfWarfare
- 20,617
- 19
- 137
- 193
2
votes
2 answers
Ionic Backand App refused connection to server on Android Device, not on emulator
I recently learned how to build a mobile application using Ionic and needed a backend so I decided to use the Backand framework. I am developing in Visual Studio and everything works great when run from the emulator, and all service calls work…

Stephen
- 21
- 2
2
votes
1 answer
MobileDevice Framework AMDeviceCopyValue get ECID
(Hope this post don't get too messy)
Hello, I have a question about the AMDeviceCopyValue function in mobiledevice library, because I want to grab the ECID from a connected iDevice and print it, in the c console.
#include "MobileDevice.h"
void…

cCoderfwerrf00
- 43
- 1
- 7
1
vote
1 answer
HTML5 implementation for Mobile Development
I want to implement HTML5 for my apps to make it support for cross platform but I want to know what are all various Mobile Frameworks available and which one is best I can implement with.
I do aware of PHONEGAP and MoSync. My question is : any…

SDroid
- 33
- 6
0
votes
0 answers
Is it possible to control media (play/pause/volume/...) on an iOS device remotely?
Is it possible, with the use of libraries like libmobiledevice (or any other) to act on media controls (play/pause/volume/...) on iOS?
I am currently emulating a bluetooth keyboard to do so and I wanted to know if it was possible in another way,…

Lawris
- 965
- 2
- 9
- 21
0
votes
1 answer
Xcode Project can not find .framework classes to import
I am working on a project, that reads the bank cards. The card reader company provided a .framework SDK but does not provide any technical support.
I search on Google and find out how to add .framework into the project. I followed the following…

Ali Qaderi
- 471
- 7
- 16
0
votes
4 answers
Flutter how to display a Custom Clipper when (or inside) using a Custom Scroll View
so here's the deal. I created (sort of) a custom clipper shaped like a wave inside a class called WaveClipper
the wave clipper class:
class WaveClipper extends CustomClipper {
@override
Path getClip(Size size) {
var path = Path();
…

Andrea herrera
- 81
- 1
- 11
0
votes
1 answer
C how to print CFNumberRef
Quick question im wondering how I could print CFNumberRef.
Im currently working on a program that comunicate with mobiledevice framework (Apple) that will print the ecid of a iDevice. And I currently have one problem, I read here link
that to get…

cCoderfwerrf00
- 43
- 1
- 7
0
votes
1 answer
Is it possible to achieve string localization inside of a statically linked lib?
I am working on building an SDK which will be built out as a statically linked library that third party applications can then drop in to their applications. Inside of this SDK, I was looking to be able to perform some "localization." Basically, I…

user3696003
- 1
- 1