Jump to content

ZRomik

Members
  • Content Count

    54
  • Joined

  • Last visited

Community Reputation

2 Neutral

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. ZRomik

    READ_SMS permission not requested

    Yes! On phone work too Thanks for help Lars Fosdal
  2. ZRomik

    READ_SMS permission not requested

    After clean and rebuild project on emulator READ_SMS permission work fine. I Try on phone after charging them
  3. ZRomik

    READ_SMS permission not requested

    >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
  4. ZRomik

    READ_SMS permission not requested

    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.
  5. Is there an ics library for lazarus?
  6. Today I got strange assert This assert raised before I free the components. I'm doing rest auth, after close app and got assert.
  7. ZRomik

    TSslHttpCli

    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.
  8. ZRomik

    TSslHttpCli

    Another question about HttpCli. How do I know if a component is ready to work? Sometime I get error
  9. ZRomik

    TSslHttpCli

    OK. Thanks
  10. ZRomik

    TSslHttpCli

    Can you tell me more how to do this?
  11. ZRomik

    TSslHttpCli

    Angus, is there possible get response from server not by event, like in Synapse eg
  12. ZRomik

    TSslHttpCli

    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!
  13. ZRomik

    TSslHttpCli

    I tried to build manual the parameters with SuperObject but still got error
  14. ZRomik

    TSslHttpCli

    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
  15. ZRomik

    TSslHttpCli

    Angus, I'm really can't find where specifyed Json parameters in example you told
×