ZRomik
Members-
Content Count
54 -
Joined
-
Last visited
Community Reputation
2 NeutralRecent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Yes! On phone work too Thanks for help Lars Fosdal
-
After clean and rebuild project on emulator READ_SMS permission work fine. I Try on phone after charging them
-
>Has SMS access been enabled for the app in the Android settings? Yes And I enable "Read SMS"and "Send SMS" in "Uses Permissions" tab in Project Options
-
Hi! I wrote small app for Android for test. In OnCreate method I request Some permission from OS FStorageRead := JStringToString(TJManifest_permission.JavaClass.READ_EXTERNAL_STORAGE); FStorageWrite := JStringToString(TJManifest_permission.JavaClass.WRITE_EXTERNAL_STORAGE); FReadSms := JStringToString(TJManifest_permission.JavaClass.READ_SMS); PermissionsService.RequestPermissions([FReadSms, FStorageRead, FStorageWrite], nil, DisplayRationale); So, only requests READ_EXTERNAL_STORAGE and WRITE_EXTERNAL_STORAGE works fine. Is anybody know why READ_SMS permission not requested? I use for test my Xiaomi Redmi Note 4 with MIUI-10 on Android 6.0. On Android emulator is the same thing.
-
Is there an ics library for lazarus?
-
Today I got strange assert This assert raised before I free the components. I'm doing rest auth, after close app and got assert.
-
Thank for help. I'm doing sync request in for cycle and sometime got yhis error. Problem solved when i add empty for cycle for 1000 times.
-
Another question about HttpCli. How do I know if a component is ready to work? Sometime I get error
-
OK. Thanks
-
Can you tell me more how to do this?
-
Angus, is there possible get response from server not by event, like in Synapse eg
-
all that had to be done was to add this code. cli1.Accept := 'application/json;'; Now I successfull recieve data from server. Thanks for help!
-
I tried to build manual the parameters with SuperObject but still got error
-
I tried to do that you say, but got error too. This is the example from server I tried to use both address string: "POST https://esi.evetech.net/latest/universe/ids/?datasource=tranquility&language=en-us" and "POST https://esi.evetech.net/latest/universe/ids/" with same result
-
Angus, I'm really can't find where specifyed Json parameters in example you told