Xcode - Using SMS text in APP - objective-c

my scenario:
I have a device which can send an SMS by error with the error code.
This device have an own sim card. Now I would like the error code which come with sms to my iPhone automatically in my app to analyze.
My thought :
The app starts and look into my "sms folder" if there are messages from "special numbers with an error code" and copy the last one into my app
My solution now is to copy the sms and paste it in a text box which I convert into my app...
I hope my english is not so bad.
Best regards
John

Not working without Jailbreak.

Related

Does anyone know how do i get the list of all the applications installed in phone that can run audio files in react-native?

I want to create a functionality in react-native app such that on pressing a particular button, it should get me to the "open with" window, and that window should fetch me the list of all the installed applications in the phone which can run audio files. How can i get such list?
On a Android system, that "Open with" screen pops up when:
The user have more than one application that can play that specific audio format(Because it's not every app that can run every audio format).
The user did not set-up a default app to open the audio format.
So, You should just use a library like rn-fetch-blob to open the file for you, like as follow:
RNFetchBlob.android.actionViewIntent(fileLocation, mimeType)
And android will take care of picking the right app for you.
In case this answer does not satisfy you, you can get a list of apps using react-native-android-installed-apps-unblocking, but there's no information about wich ones can run an audio file, and maybe IOS will have some restrictions about what can be done, so your best option is to let the system do that for you!

Can we delete a reply of our own Google Play App's review

I have replied to a review of an app in Google Play Store. After replying, Google Play Console only shows me the options to edit the replay, but no option to delete. Is there a way to delete it?
Whit I did is
1 change the keyboard language of my phone to Arabic
2 any reply i want to delete i edit it by add a special Arabic character
The reply will still there but it will be empty

Empty Line Before Start Of SMS using GSM

I have developed an SMS app in winform using vb.net. I can send SMS to any valid number. The problem I am facing right now is that when I send a message to a number it is received with an empty line before the SMS starting line and the text appears in the next line. Any solution regarding this problem? Thanks

Unable to register as developer: Not receiving confirmation code

I'm trying to register as a developer but I'm not receiving confirmation code to my cell phone.
I entered my country code + my phone number in the right form but still, I tried "resend" option couple of times, several phone numbers and still all my tries failed.
Can it be I'm blocked or there is a temporary failure at Facebook?
For anyone finding this via google, try this:
Not receiving your Facebook confirmation code?
Text "F" (without quotes) to 32665 and you should instantly receive the code
Hope this helps cut down on some implementation headaches people may be having.
Enter that into the corresponding area under settings on Facebook and boom it all works! (Dont forget to instantly deactivate SMS alerts otherwise you’ll be pestered every time a ‘friend’ mentions what they had for tea, plus you’ll be charged for it too)

Crash Reports not being sent to Apple

I currently have an App that is on the Mac App Store that a couple people have reported instability with. I was able to reproduce the crashes and fix the problem, but what concerned me is that I have no Crash Reports listed for the App in iTunes Connect. When reproducing the crashes myself I did not get the standard crash report dialog asking if I wanted to send the crash report. In Console I do get:
6/22/11 9:05:25 AM ReportCrash[1902] Saved crash report for Application [1893] version 1.0 (1.0) to /Users/Name/Library/Logs/DiagnosticReports/Application_2011-06-22-090525_MacBook-Pro-4-Lyfe.crash
From what I could find on line the crash reporting should be automatic and you should only have to worry about implementing custom crash reporting if you want the reports sent directly to you.
My question is, why are crashes for my App not being sent back in to Apple and then ultimately showing up for me in iTunes Connect? My app is a menu bar item and does not have a full set of menus or dock icon if it matters at all.
Kris,
You do not get all the crash reports on iTunesConnect.
This is how it works:
Lets say you are an iPhone user, when you first activate your iPhone, it asks you if you'd like to send anonymous reports to apple, if you checkmark yes, only then the crash reports from your phone would be sent to apple.
Another thing to keep in mind is, even if a person has checkmarked this option, these reports would be sent, only when the user syncs his iOS device with the iTunes.
So essentially, the answer is
You cannot rely on iTunesConnect to get your app's crash
reports
Instead you should use a third party solution, like: Hoptoad:
airbrakeapp.com
I am very sure that there are other solutions like hoptoad as well, but this is what I have used and works very well.