• May 02, 2024, 04:18:09 am

Author Topic: App Development  (Read 9005 times)

0 Members and 1 Guest are viewing this topic.

Offline matthew

  • Mass Poster
  • ****
  • Posts: 1,315
  • Reputation: 13
  • SymphonyOS
  • Current Phone: :
    N8-00 (25.007)
    808 (113.010.1508)
    Retired E72, E6-00
Re: App Development
« Reply #30 on: November 18, 2013, 09:55:52 pm »
installserver allow user to install unsigned apps if not mistaken.
Ok, never mind. You do not know what installserver logging is.

Offline Allstar12345

  • Allstar Software Founder
  • Administrator
  • Forum Genius
  • ******
  • Posts: 5,235
  • Reputation: 812
    • Allstar Software
  • Current Phone: : OnePlus 8 Pro, Xperia 10, Nexus 6p, Jolla Phone, Nokia N8, Nokia 808 PureView, BlackBerry Z30
Re: App Development
« Reply #31 on: November 18, 2013, 10:13:49 pm »
huellif is right, it can be disabled but it wouldn't be really worth it if it's a small App.

Offline huellif

  • Developer
  • Christmas Santa
  • ****
  • Posts: 402
  • Reputation: 212
Re: App Development
« Reply #32 on: November 18, 2013, 11:52:17 pm »
I disabled a "copy protection" it was an expired QuasarMX demo, if you really want to add a protection add more than one function(call).

Offline symster

  • Developer
  • Happy Member
  • ****
  • Posts: 214
  • Reputation: 6
  • Symbian Power User
  • Current Phone: : Nokia N8 Soon Nokia 808
Re: App Development
« Reply #33 on: November 19, 2013, 07:22:49 pm »
I disabled a "copy protection" it was an expired QuasarMX demo, if you really want to add a protection add more than one function(call).
I assume you mean quasarmx lite version because didn't found any demo version but can't believe you can still enable all the blocked feature.

Offline huellif

  • Developer
  • Christmas Santa
  • ****
  • Posts: 402
  • Reputation: 212
Re: App Development
« Reply #34 on: November 21, 2013, 11:49:41 pm »
no previous versions were free and worked for limited time ;)

and there's no need to crack blocked features I am part or the testers team :P

Offline symster

  • Developer
  • Happy Member
  • ****
  • Posts: 214
  • Reputation: 6
  • Symbian Power User
  • Current Phone: : Nokia N8 Soon Nokia 808
Re: App Development
« Reply #35 on: December 31, 2013, 05:06:49 pm »
Need some advice.Is it possible to create string of list like this?.Thank You

Code: [Select]
import QtQuick 1.1

QtObject {
    id: example model
    property list somemodel: [
        "359054126545560",
        "354871642063595",
        "315455041700672",
        "358261042134509"
    ]
}

Offline huellif

  • Developer
  • Christmas Santa
  • ****
  • Posts: 402
  • Reputation: 212
Re: App Development
« Reply #36 on: December 31, 2013, 09:00:25 pm »
read here:
http://www.w3schools.com/js/js_obj_array.asp

so it should be correct