Piracy: How to protect an app? - Java for Android App Development

Hello guys,
are you one of the android developers pissed off by piracy?
I have about 4000 active illegal users (70%), but my app is without any security checks.
Have you found a solution? I gave up on google security checks, it was too easy to hack. There is something more secure?
I've done a lot of research, but I am searching also for some real experience by xda users.
Thank you!

Well, if you chose to implement in-app purchasing, then I suppose that might solve your problem.

taomorpheus said:
Hello guys,
are you one of the android developers pissed off by piracy?
I have about 4000 active illegal users (70%), but my app is without any security checks.
Have you found a solution? I gave up on google security checks, it was too easy to hack. There is something more secure?
I've done a lot of research, but I am searching also for some real experience by xda users.
Thank you!
Click to expand...
Click to collapse
If you have your own server you could crosscheck the user's google account with your purchase list.
Do it hidden, in multiple places and act delayed if you find out about a pirated version, then it's really hard to crack.
If you talk about your facebook app you could be kinda bad mannered and post that they are using an illegal app on their wall
Of course you'd have to be absolutely sure then

octobclrnts said:
Well, if you chose to implement in-app purchasing, then I suppose that might solve your problem.
Click to expand...
Click to collapse
I can't because a lot of people have already purchased the app in the classic way!
superkoal said:
If you have your own server you could crosscheck the user's google account with your purchase list.
Do it hidden, in multiple places and act delayed if you find out about a pirated version, then it's really hard to crack.
If you talk about your facebook app you could be kinda bad mannered and post that they are using an illegal app on their wall
Of course you'd have to be absolutely sure then
Click to expand...
Click to collapse
Actually this is a really cool idea, can I access to my google account using google api?

superkoal said:
If you have your own server you could crosscheck the user's google account with your purchase list.
Do it hidden, in multiple places and act delayed if you find out about a pirated version, then it's really hard to crack.
If you talk about your facebook app you could be kinda bad mannered and post that they are using an illegal app on their wall
Of course you'd have to be absolutely sure then
Click to expand...
Click to collapse
I like this.

taomorpheus said:
Actually this is a really cool idea, can I access to my google account using google api?
Click to expand...
Click to collapse
Have a look at this:
http://stackoverflow.com/questions/2245545/accessing-google-account-id-username-via-android

superkoal said:
Have a look at this:
http://stackoverflow.com/questions/2245545/accessing-google-account-id-username-via-android
Click to expand...
Click to collapse
My Kaspersky Anti-Virus programm says that it is a fishing site.
However, it is STACKOVERFLOW!!!

nikwen said:
My Kaspersky Anti-Virus programm says that it is a fishing site.
However, it is STACKOVERFLOW!!!
Click to expand...
Click to collapse
Kaspersky :silly:

taomorpheus said:
I can't because a lot of people have already purchased the app in the classic way!
Click to expand...
Click to collapse
Sent
In my opinion, create some sort of pop up that says "Attention pirated user, I'm glad you love my app as much as I loved making it, but I need to make money off of it. Please officially purchase this app "
Then have an In app purchase option in the pop up. This would make me want to purchase the app if I pirated it. I don't really believe that fighting piracy with DRM does anything but cause harm. You should just try and make the pirated users feel bad and encourage them to buy the app.
Sent from my SAMSUNG-SGH-I337 using xda app-developers app

v3nturetheworld said:
Sent
In my opinion, create some sort of pop up that says "Attention pirated user, I'm glad you love my app as much as I loved making it, but I need to make money off of it. Please officially purchase this app "
Then have an In app purchase option in the pop up. This would make me want to purchase the app if I pirated it. I don't really believe that fighting piracy with DRM does anything but cause harm. You should just try and make the pirated users feel bad and encourage them to buy the app.
Sent from my SAMSUNG-SGH-I337 using xda app-developers app
Click to expand...
Click to collapse
Ahah yeah that's a good solution!
I've noticed that most of the pirated users come from Burma, where google play doesn't work. So I think that I will leave the app in this way and create another pro version for the nations that have google play issues!

But... how about implementing a solution like ROM Manager does? I mean, with a separate app and a pirate popup as suggested above? I'm clueless on what technology use to create a licensing APK, but it would be easier even for those people that haven't got Play Store, maybe
Tiwiz

I guess the main app checks if the Lisence app is installed and if installed it checks the key from a database of the license app and checks for the validity of Lisence on the cloud
Sent from my GT-S5302 using Tapatalk 2
Hit Thanx Button if i helped you!

taomorpheus said:
Have you found a solution? I gave up on google security checks, it was too easy to hack. There is something more secure?
Click to expand...
Click to collapse
Piracy is a "fact of life" for software. And most anti-piracy measures tend to hurt legitimate paid customers (and the dev) more than the pirates.
If you have a good, useful app, those guys in China can hack almost anything. (No offense to China; no Play there, lower income and an anti-IP culture.)
There are a FEW successful devs who have gone to extra-ordinary lengths at the JNI level. I tested, but never turned any JNI anti-hacking code on, because with thousands of paid users on many weird phones and ROMs, I felt it would break for enough people to not be worth it.
If you have an app that needs a server connection, or data updates, and you have some kind of independent registration system, you have a chance too. But that can be a lot of work.
I'd rather spend my time making my app better and supporting customers. My app price is higher than many would like (but I have virtually no paid competition). And because my app is support intensive, I've taken the view that I'm selling support and convenient updates, not an app, so much.
I mostly verify people are customers before supporting them, do as good a job as I can, get good reviews, and people see there is value there for their money. And yes, I get tons of support requests from pirates. Some of them I've converted to customers.
And... regular updates to an app provides value. If pirates want the latest, they keep having to go look for it. (Or do I recall some pirate update service ?) Updates via Play are easy and that ease has value.
All the above said, I do get angry from time to time, mostly at people stealing my time IE support. And the idea of finding a highly effective anti-piracy measure is fascinating.
But almost none of us is without some sin in our life regarding music, movies or software downloading... So I think it's good to consider the pirates' perspectives. Effective antipiracy definitely drastically reduces the user base and the Internet knowledge base and familiarity, and its' questionable as to how much revenue might increase, if at all.
IE, piracy can be seen as free advertising, and an opportunity to show some pirates there are valid reasons why going legitimate might benefit them, or even reduce their guilt level. I've had a few people buy my app and apologize...

mikereidis said:
Piracy is a "fact of life" for software. And most anti-piracy measures tend to hurt legitimate paid customers (and the dev) more than the pirates.
If you have a good, useful app, those guys in China can hack almost anything. (No offense to China; no Play there, lower income and an anti-IP culture.)
There are a FEW successful devs who have gone to extra-ordinary lengths at the JNI level. I tested, but never turned any JNI anti-hacking code on, because with thousands of paid users on many weird phones and ROMs, I felt it would break for enough people to not be worth it.
If you have an app that needs a server connection, or data updates, and you have some kind of independent registration system, you have a chance too. But that can be a lot of work.
I'd rather spend my time making my app better and supporting customers. My app price is higher than many would like (but I have virtually no paid competition). And because my app is support intensive, I've taken the view that I'm selling support and convenient updates, not an app, so much.
I mostly verify people are customers before supporting them, do as good a job as I can, get good reviews, and people see there is value there for their money. And yes, I get tons of support requests from pirates. Some of them I've converted to customers.
And... regular updates to an app provides value. If pirates want the latest, they keep having to go look for it. (Or do I recall some pirate update service ?) Updates via Play are easy and that ease has value.
All the above said, I do get angry from time to time, mostly at people stealing my time IE support. And the idea of finding a highly effective anti-piracy measure is fascinating.
But almost none of us is without some sin in our life regarding music, movies or software downloading... So I think it's good to consider the pirates' perspectives. Effective antipiracy definitely drastically reduces the user base and the Internet knowledge base and familiarity, and its' questionable as to how much revenue might increase, if at all.
IE, piracy can be seen as free advertising, and an opportunity to show some pirates there are valid reasons why going legitimate might benefit them, or even reduce their guilt level. I've had a few people buy my app and apologize...
Click to expand...
Click to collapse
Well, this is my philosophy. I usually reply to all emails, build the app around the feedback from the community and try to fix all the issues. This permits to create a loyal group of users, and it's the reason why apps like Facebook Home are hated so much: they talk about building apps around people, but for them people is the product, so it's a fail from the beginning
After some considerations I have abandoned the idea to build an antipiracy system, the reason is in part related to your thoughts but also because the 60-70% of pirated versions come from nations like Burma, indonesia, etc etc. So I don't feel that someone is stealing, google play can't provide a service, so people react. The good thing is that despite the lack of a service, they try to use my apps, so that's good, right?
So, at the conclusion, the best antipiracy system is to not use an antipiracy system. Clearly it will be hard to be supported only by paying customers, but the majority accepts some ads if the product is good ( the important thing is to not include spammy and intrusive services, one banner or a full screen on time a day is sufficient).
Thank you for this reply, it's really important to know that there are good developers around! :highfive:

Have you tried google licensing?
taomorpheus said:
Hello guys,
are you one of the android developers pissed off by piracy?
I have about 4000 active illegal users (70%), but my app is without any security checks.
Have you found a solution? I gave up on google security checks, it was too easy to hack. There is something more secure?
I've done a lot of research, but I am searching also for some real experience by xda users.
Thank you!
Click to expand...
Click to collapse
Hi,
I am new to android development but I've read about google licensing services which checks for user account whether the app is actually purchased from that particular account associated with the user. If authentication fails then user gets a blocking dialog to either exit the app or purchase it from play store.

dbroid said:
Hi,
I am new to android development but I've read about google licensing services which checks for user account whether the app is actually purchased from that particular account associated with the user. If authentication fails then user gets a blocking dialog to either exit the app or purchase it from play store.
Click to expand...
Click to collapse
Cracker can easily remove IF and your won't ask to buy it.
There should be VMProtect or Themida like tool for android

GR0S said:
Cracker can easily remove IF and your won't ask to buy it.
There should be VMProtect or Themida like tool for android
Click to expand...
Click to collapse
It was hacked not long after its launch.
http://www.androidpolice.com/2010/0...on-easily-circumvented-will-not-stop-pirates/

taomorpheus said:
After some considerations I have abandoned the idea to build an antipiracy system, the reason is in part related to your thoughts but also because the 60-70% of pirated versions come from nations like Burma, indonesia, etc etc. So I don't feel that someone is stealing, google play can't provide a service, so people react. The good thing is that despite the lack of a service, they try to use my apps, so that's good, right?
Click to expand...
Click to collapse
Yes. Most pirates can't afford the app or wouldn't buy it anyway. I also think that many pirates and those who felt "forced" to buy a protected app are bad customers. They will spread their bad feelings about the app and the "greedy dev".
And many have a sense of entitlement, so they make demands, expect lots of support, complain and write bad reviews. They project their own faults on others, and always assume others are trying to rip THEM off. Some have told me they were "testing" my app, because they were worried about getting ripped off if it didn't work (despite my free version and anytime cancel policy).
Better not to have such customers. These are the same people who think they are more important than everybody else and cheat in traffic and lineups etc.
taomorpheus said:
So, at the conclusion, the best antipiracy system is to not use an antipiracy system. Clearly it will be hard to be supported only by paying customers, but the majority accepts some ads if the product is good ( the important thing is to not include spammy and intrusive services, one banner or a full screen on time a day is sufficient).
Thank you for this reply, it's really important to know that there are good developers around! :highfive:
Click to expand...
Click to collapse
For most of us small devs, yes. Things may be different for certain apps, such as those that need a backend server, and for multi-person companies.
You can also promote that your app is "DRM free". That's definitely a plus, especially to custom ROM users who may avoid using Google Play.
I tried ads for a few months in 2011. The "CPM" rates started good, but quickly dropped to almost nothing. I think it's very hard to make money from ads, unless your app has a million users, and they are more "average" people who might click on the ads, accidentally or not.
I think it's usually better to raise app price as high as you can. I experimented a lot for many months between $1 and $10, usually keeping price constant for at least 2-3 weeks. I, and some others, have found that total income remains somewhat constant no matter what the price, LOL.
Now I've left price at the high end, so I can provide the best support possible, by limiting sales quantity. Some people think we should "make it up in volume", but that's a self-serving wish of the person who wants it cheaper. High volume might be viable if you provide zero technical support though.

What I'd say in terms of pirate stuff is to not try too hard on the software level (though I might write a guide on a few useful methods and pieces of code to prevent the usual circumvention methods) but on the upload level. When you release a new version, wait a couple of days and then search for a pirate version of your app. If you find one, report it, they're usually down in about 5 minutes. The more often you do this, the more likely people are to search, find all the links are "dead" and then just think "stuff it, I'll just buy it". However, this will only work on people who can buy it and are using pirate versions because they wish to, not because they have to

Quinny899 said:
What I'd say in terms of pirate stuff is to not try too hard on the software level (though I might write a guide on a few useful methods and pieces of code to prevent the usual circumvention methods) but on the upload level. When you release a new version, wait a couple of days and then search for a pirate version of your app. If you find one, report it, they're usually down in about 5 minutes. The more often you do this, the more likely people are to search, find all the links are "dead" and then just think "stuff it, I'll just buy it". However, this will only work on people who can buy it and are using pirate versions because they wish to, not because they have to
Click to expand...
Click to collapse
Because they'd PREFER not to spend money, if possible. In most areas of life, that's what most of us do.
Last I looked, this was the best Android cracking site: http://androidcracking.blogspot.ca/ . I read everything there twice before I started experimenting with protection code. If nothing else, it gives a glimpse of how hard it is to protect a popular app well.
I sent DMCA takedown requests to a few sites some time ago, but it's an endless task, and IMO not worth it, unless your app is VERY niche/has relatively few users. I've been "honored" to have my app included in several Torrents full of Android apps. Some of those Torrents are updated regularly.
I will still notify XDA admins if there's a link or offending ROM on XDA. XDA mods take it seriously.
Some companies will put out their own "pirate" fake or crippled versions of movies, and app devs could do the same. Perhaps have endless popups offering to buy the app legitimately. I personally wouldn't bother (at this time) but it could work. I agree that making piracy a hassle may improve sales a bit.
LOL, I just re-looked and see 3 on isohunt that are my app alone, but they are older. If I have time for "fun" later this year I should (1) start my own torrents, (2) collect IP addresses, and... I dunno; don't seriously want to be a copyright troll; rather design & develop.

Related

Android Security: A neglected subject (long)

First of all: I'm an OSS advocate and love the idea of open source. Don't forget that while reading this.
Some 2 month ago, I got myself a Galaxy S. It's not exactly cheap, but on the other side, it's really good hardware. This thread is not about Samsung or the Galaxy S. It's about the missing parts of android security.
We all know it from our home computers: Software sometimes has bugs. Some just annoy us, others are potentially dangerous for our beloved data. Our data sometimes gets stolen or deleted due to viruses. Viruses enter our machines by exploiting bugs that allow for code execution or priviledge escalation. To stay patched, we regularly execute our "apt-get update;apt-get dist-upgrade" or use windows update. We do this to close security holes on our systems.
In the PC world, the software and OS manufacturers release security bulletins to inform users of potentially dangerous issues. They say how to work around them or provide a patch.
How do we stay informed about issues and keep our Android devices updated?
Here's what Google says:
We will publicly announce security bugs when the fixes are available via postings to the android-security-announce group on Google Groups.
Click to expand...
Click to collapse
Source: http://developer.android.com/guide/appendix/faq/security.html#informed
OK, that particular group is empty (except for a welcome post). Maybe there are no bugs in Android. Go check yourself and google a bit - they do exist.
"So why doesn't Google tell us?", you ask. I don't know. What I know is that the various components of Android (WebKit, kernel, ...) do have bugs. There's nothing wrong with that BTW, software is made by people - and people make mistakes and write buggy code all the time. Just read the changelogs or release notes.
"Wait", I head you say, "there are no changelogs or release notes for Android releases".
Oh - so let's sum up what we need to stay informed about security issues, bugs and workarounds:
* Security bulletins and
* Patches or Workaround information
What of these do we have? Right, nada, zilch, rien.
I'll leave it up to you to decide if that's good common practise.
"But why is this important anyway", you ask.
Well, remember my example above. You visit a website and suddenly find all your stored passwords floating around on the internet. Don't tell me that's not possible, there was a WebKit bug in 2.2 that did just that. Another scenario would be a drive-by download that breaks out of the sandbox and makes expensive phone calls. Or orders subscriptions for monthly new ringtones, raising your bill by orders of magnitute. Or shares your music on illegal download portals (shh, don't tell the RIAA that this is remotely possible).
The bug is probably fixed in 2.2.1 - but without changelogs we can't be sure.
But that's not all - there's a second problem. Not only are we unaware of security issues, we also don't have automated update mechanisms.
We only receive updates when our phone's manufacturers release new firmware. Sadly, not all manufacturers support their phones in the long run.
In the PC world, most Distros have a central package management - that Google forgot to implement in Android. Agreed, some phones can receive OTA updates, but that depends on the carrier. And because of the differences in Android versions it's not possible to have a central patch management either. So we do not know if our Android devices might have security issues. We also have no easy way to patch them.
Perhaps you knew this before, then I apologize for taking your time.
What do YOU - the computer literate and security aware XDA users - think about this? Do you think that's a problem? Or would you rather say that these are minor problems?
Very intresting, thanks! The update problem should be fixed with the next release, no more custom UIs and mods from phone manufacturers,at least google said that
Sent from my Nexus One using XDA App
Excellent post and quite agree with you. The other significant problem looming is the granularity (or rather, lack thereof) in app permissions which can cause problems you describe without bugs and exploits. I install an app that does something interesting with contacts and also has internet access to display ads. How do I know that my contacts are not encrypted, so making sniffing useless, and beamed back to mummy? Nothing other than blind trust!
I love Android but it's an accident waiting to happen unless the kind of changes you advocate are implemented and granularity of permissions significantly increased. I don't like much about Apple but their walled garden app store is something they did get right although IMHO, they also abuse that power to stifle competition. Bring out the feds!
simonta said:
The other significant problem looming is the granularity (or rather, lack thereof) in app permissions [...]
How do I know that my contacts are not encrypted, so making sniffing useless, and beamed back to mummy? Nothing other than blind trust!
Click to expand...
Click to collapse
I agree, although I'm not sure that less experienced users might have difficulties with such options.
simonta said:
I love Android but it's an accident waiting to happen
Click to expand...
Click to collapse
Sad but true. I'm just curious what Google will do when the first problems arise and the first users will have groundshaking bills.
If that happens to just a few users, it'll get a kind media coverage Google surely won't like.
I've seen quite a few android exploits posted on bugtraq over the years. It's a high-volume email list, but with some filtering of stuff you don't care about, it becomes manageable. It's been around forever and is a good resource if you want the latest security news on just about anything computer related.
http://www.securityfocus.com/archive/1/description
People are bashing a lot about the Android security model but the truth is you can never have 100% protection with ANY solution.
Apple is not allowing any app in their store. Fine. but mostly they are only filtering out apps that crash, violate some rules or they just don't like them or whatever. but they can never tell what an app is really doing. Therefore they would neeed to reverse-engineer every app they get etc. That's just impossible considering the amount of apps....
Speaking again of Android. I think the permission model is not bad. I mean, no other OS got such detailed description about what an app can do or not. But unfortunately it can only filter out very conspicuous apps, i.e. a Reversi game asking for your location and internet access. But then you never know... if the app is using ads it requires location and internet access, right? so what can you do?
RAMMANN said:
Apple is not allowing any app in their store. Fine. but mostly they are only filtering out apps that crash, violate some rules or they just don't like them or whatever. but they can never tell what an app is really doing. Therefore they would neeed to reverse-engineer every app they get etc. That's just impossible considering the amount of apps....
Click to expand...
Click to collapse
Not really, they do blackbox testing and let the apps run on emulated devices they then check if the app "behaves" as desired...
Of course you can't get 100% security and I don't think that's what we're saying, but there is a lot you can do.
Take for example internet access which is the biggest worry I have. The only reason most apps request internet access is to support ads. I now have a choice to make, don't use the app or trust it. That simple, no other choice.
If I installed an app that serves ads but did not have internet access, then the only way that app can get information off my phone is to use exploits and I'm a lot more comfortable knowing that some miscreant needs to understand that than the current situation where some script kiddy can hoover up my contacts.
However, if internet access and ad serving were separate permissions, you could in one hit address, taking a wild guess, 90% of the risk from the wild west that is Marketplace. With a bit more design and work, it would be possible to get the risk down to manageable and acceptable levels (at least for me).
I absolutely agree with you on Apple, one of the main reasons that I chose a Desire instead of an iPhone, but the Android approach is too far the other way IMHO.
Just my tuppence, in a hopeless cause of imagining someone at Google paying attention and thinking you know what, it is an accident waiting to happen.
marty1976 said:
Not really, they do blackbox testing and let the apps run on emulated devices they then check if the app "behaves" as desired...
Click to expand...
Click to collapse
Well, so why did a tethering app once make it into the appstore?
Also I think there are many possibilities for an app to behave normal, and just start some bad activity after some time. Wait a couple months until the app is spread around and then bang. Or remotely launch some action initiated through push notifications etc.
If there is interest, then there is always a way....
simonta said:
However, if internet access and ad serving were separate permissions, you could in one hit address, taking a wild guess, 90% of the risk from the wild west that is Marketplace. With a bit more design and work, it would be possible to get the risk down to manageable and acceptable levels (at least for me).
Click to expand...
Click to collapse
I agree that a seperate permission for ads would be a good thing.
But there are still many apps which need your location, contacts, internet access.... all the social media things nowadays. And this is where the whole thing will be going to so I think in the future it will be even harder to differenciate.
Getting back on topic: I just read that Windows 7 Phone will get updates and patches like desktop windows. That means patchday once a month plus when urgency is high...
simonta said:
However, if internet access and ad serving were separate permissions, you could in one hit address, taking a wild guess, 90% of the risk from the wild west that is Marketplace. With a bit more design and work, it would be possible to get the risk down to manageable and acceptable levels (at least for me).
Click to expand...
Click to collapse
But, how do you distinguish them? Today, (as a developer) I can use any ad-provider I want. In order to distinguish ads from general internet access, the OS would need one of:
A Google-defined ad interface, which stifles "creativity" in ad design. Developers would simply ignore it and do what they do now as soon as their preferred ad-provider didn't want to support the "official" ad system or provided some improvement by doing so.
An OS update to support every new ad-provider (yuck^2).
Every ad-provider would have to go through a Google whitelist that was looked up on the fly (increased traffic, and all ads are now "visible" to Google whether Google is involved in the transaction or not). This would also make ad-blocking apps harder to implement since Google's whitelisting API might not behave if the whitelist was unavailable. On the upside, it would make ad-blocking in custom ROMs be trivial.
Even if Google did one of these things, it still wouldn't provide any real increase in privacy or security. The "ad service" would still need to deliver a payload from the app to the service (in order to select ads) and another from the service to the app (the ad content). Such a mechanism could be trivially exploited to do anything that simple HTTP access could provide.
http://code.google.com/p/android/issues/list
issues submitted are reviewed by google employed techs... they tell you if you messed up and caused the issue or if the issue will be fixed in a future release or whatever info they find.
probably not the best way to handle it but its better then nothing.
twztdwyz said:
http://code.google.com/p/android/issues/list
Click to expand...
Click to collapse
Knew that bug tracker, but the free tagging aka labels isn't the best idea IMHO.
You can't search for a specific release, for example...
twztdwyz said:
probably not the best way to handle it but its better then nothing.
Click to expand...
Click to collapse
Ack, but I think Google can do _much_ better...
Two more things to have in mind:
1. I doubt that many Android users bother much about what permissions they give to an app.
2. Using Google to sync your contacts and calendar (and who knows what else), is a bad, bad idea.

Paid Apps the main problem with Android

I am not a developer, but I was reading up on experiences that developers have with the Android Market.
Then I also came across a website that showed some statistics about paid apps and they were shocking. I can't remember the source right now, but it said that the Apple AppStore is a $200 million business per month, where the Android Market is only $5 millions per month. This is very discouraging for developers who are in it for money (usually companies who have the resources to create Games and more Complex Apps and have the ability to Partner with Services).
One developers said that he only got 23 downloads, in the first month. He mentioned then that over half of them used the 24 hour refund (could that be that those were leachers who downloaded the app and threw it on a P2P channel?), eventually he ended up with 11 sales. One guy sent him an email and said that $4.99 is too much to ask for, which I think is not unreasonable considering that there are many apps in the Apple AppStore that cost much more than that. Whether or not his app is useful or not to most users is sadly unknown by me. But looking at his perspective I think I would start developing apps for the iOS, who wouldn't that wants to make money?
The problem with these figures is that developers will eventually stop developing paid apps and the quality of the Android Market (from now on referred to Market) apps vs Apple AppStore (from now on referred to AppStore) apps will extremely decline. And there will be either many low rating apps in the Market or there will be an increase in the amount of Apps submitted the the Market.
We all want good Apps, Apple found out Apps are the number 1 reason a Plattform has success. Android has Google behind it which makes up for a good amount of Great apps and there are very good developers here that are not in it for the money, but eventually it all comes down to making money when it comes to professional businesses offering a product. Look at the games that are offered on the iOS platform vs Android, you can't tell me that an iPhone 3G or a 2nd Gen iPod has better graphics performance than some of the higher-end Android devices.
Also, are there too many free alternatives in the Android Market that the AppStore doesn't have? There are also many free apps in the AppStore.
What can be done about this? - Please post your ideas, since I am not a developer I am not the pro here when it comes to this issue I am asking for your opinion.
However, I am a business student so I have some insights of how companies will react to this as mentioned above.
The few ideas I have would be:
1. Google could increase the quality of design of the API and give different APIs to paid vs free Apps.
2. Sadly I have to mention it because of all the Leachers and then P2P distributors, remove the 24 hour refund policy.
3. Google to hire more developers in house who are paid and create free apps that can compete with the AppStore (which would cost Google a fortune). Maybe then charge a small amount for Google Voice to do some financial damage report.
4. Change the Markets way how people pay for apps? I noticed that in the past on my iPhone the decision to actually PAY for an app was much easier and faster for me, I didn't even bother to look for a free alternative.
5. Try to Market Android more towards people who are less geeks (who know where and how to find a free solution to the app they need), as in change the look of Android and make it much more simple for the average Joe day to day user (which I would hate because that means remove or hide many of the great features that make Android what I like so much about it and go back to a more primitive system like the iOS4). And tell hardware manufacturers to create more shiny phones.
--> Since most people who don't know how to get free alternatives, or who don't know and don't have the time to learn how to find free alternatives are people that are buying a product for the lifestyle and to show off (iPhone).
What are YOUR ideas to fix this issue? - Thank you for everyone posting solutions.
I don't think this is something we should worry about.
First, Android is open-source and many enthusiasts give their applications free of charge, which is not the case with Apple's closed OS. That is why about 65% of all apps in Market are free, and only 35% paid. In Appstore, about 70% are paid, only 30% free. Statistics: http://androidheadlines.com/2010/09/app-store-vs-android-market-how-much-is-paid-for.html.
Secondly, you'll find that Market currently supports purchases in only 13 markets while the App Store does so in 90. These numbers will change as time passes by and more markets will be included, but I'm sure that Android will always be a platform with much more free apps than iOS, and that's the beauty of Android.
As far as I'm aware the developers have a say regarding that 24 hour refund policy. An application can be made to be non-refundable if they choose to.
In comparing developers for iOS and Android, you have to also look at who they are individually. Sure, there are many apps developed across the board for all mobile devices, but I think the core of the Android Market are individuals who develop apps just for the sake of developing apps. They enjoy what they do and they would do it regardless of profit.
Of course you have a few that try to make money, but I believe they are the exception rather than the rule.
I mean no offense when I say this, but I believe that the iPhone attracts a very different type of user than Android does. Most people I personally know that use the iPhone do so more out of status and pretentiousness than its own usefulness. Many do not even know the majority of things they could do with the iPhone. Those I know who use Android use it because they root it and do their own modifications, overclocking, etc.
With this in mind, I believe that Android apps are generally created by a different kind of developer for a different kind of user.
shinji257 said:
As far as I'm aware the developers have a say regarding that 24 hour refund policy. An application can be made to be non-refundable if they choose to.
Click to expand...
Click to collapse
We have absolutely no say in whether or not out apps are refunded. If I showed you the numbers of instant refunds you'd puke. And the OP states $200 million to $5 million which is ridiculously off. I believe Google just reported that they passed $1 billion in sales (profit) from the Android Market. Either way, it's way more than $5 million a month.
All that said I personally am happy with what I have been able to do with the Market. I expected a little better on my most recent app but it takes time for people to get word of a new app. That's pretty much the problem I've found. It's hard to get noticed. But I still think it's pretty good. There is a lot I absolutely hate about the Market and a bunch of things I like about it. I'd still rather develop for Android and ironically, none of the apps I have created would even work on iPhone. Two are root apps and one requires a modification of the browser which is not allowed on iPhone (for no apparent good reason, I might add).
I am glad to hear that this isn't as big of an issue as I read online, it would be sad to see a great plattform to be hurten, as you can see with the WebOS.
As for not getting recognized, a few tips I have about that is not to rely too much on people finding your app in the market, but rather advertise it yourself, use your facebook and twitter and even this forum (if the forum policy allow that, I am not sure on that again since I am not a developer). I love the QR codes, I actually see many of them in bathroom stalls and other places, and I always check on them since it's in my curiosity to find out where they get me.
I'm making an extra living off paid apps on the Marketplace.
Oh, and an extra living off free apps with Admob.
So now I'm making 3 livings worth. It's wonderful. I have no complaints.
I mean no offense when I say this, but I believe that the iPhone attracts a very different type of user than Android does. Most people I personally know that use the iPhone do so more out of status and pretentiousness than its own usefulness. Many do not even know the majority of things they could do with the iPhone. Those I know who use Android use it because they root it and do their own modifications, overclocking, etc.
Click to expand...
Click to collapse
You're forgetting about Droid users. You'd be surprised how many people own an Android just for status and pretentiousness. It goes both ways. I even know a few people with Androids that don't even know that they have an Android.
1. Google could increase the quality of design of the API and give different APIs to paid vs free Apps.
Click to expand...
Click to collapse
Wouldn't that mean closing the source? Or you think people will use opensource platform that only runs free apps over opensource platform that runs both?
I don't think I want closed source OS on my phone, if I did I'd probably use iPhone.
2. Sadly I have to mention it because of all the Leachers and then P2P distributors, remove the 24 hour refund policy.
Click to expand...
Click to collapse
Pirates do buy software sometimes, how do you think it gets to P2P networks in the first place? One of them buys it, his friend cracks it and everyone else gets it 4free.
So it wouldn't solve anything, removing the refund would only make legit customers angry if the app doesn't work.
3. Google to hire more developers in house who are paid and create free apps that can compete with the AppStore (which would cost Google a fortune). Maybe then charge a small amount for Google Voice to do some financial damage report.
Click to expand...
Click to collapse
I thought google did hire developers and they do create free apps. I don't think competing with appstore is their ultimate goal though, since appstore and iphoneos are completely closed.
Charging for services is something I agree with completely.
They should indeed make certain (not all) services cost money. But they should also keep the software free and open to ensure the quality.
4. Change the Markets way how people pay for apps? I noticed that in the past on my iPhone the decision to actually PAY for an app was much easier and faster for me, I didn't even bother to look for a free alternative.
Click to expand...
Click to collapse
It was much easier and faster because apple paid someone to make it easier and faster.
I'm not so sure google is willing to invest money into closed source software, especially when you consider these 3 facts.
1. Closed source software has a limited amount of developers who are working to make it better, faster and more efficient.
2. More developers on a single project means more features, more bugfixes and faster development.
3. Opensource software in general is more secure because everyone can see the source code.
5. Try to Market Android more towards people who are less geeks (who know where and how to find a free solution to the app they need), as in change the look of Android and make it much more simple for the average Joe day to day user (which I would hate because that means remove or hide many of the great features that make Android what I like so much about it and go back to a more primitive system like the iOS4). And tell hardware manufacturers to create more shiny phones.
--> Since most people who don't know how to get free alternatives, or who don't know and don't have the time to learn how to find free alternatives are people that are buying a product for the lifestyle and to show off (iPhone).
Click to expand...
Click to collapse
As I don't like being labeled, I think marketing should be focused on pushing Android for everyone, not just specific groups of people.
User knows what works best for him so let him decide what to buy. Wide selection of devices that share the base operating system is great, but user should decide what type of software he wants to use, not google nor apple.
User should also decide what type of service he wants to use and whether that service is free or paid.
Changing the look of Android to make it more simple is something I'd personally hate, but we should always have options.
It would be great to flash an extremely simple android OS for my grandmother's phone for example, while keeping my VNC and SSH on my own device.
Also, don't think there's much difference between android users and iphone users, they're just people anyway. And there's an equal amount of pirated iphone apps and android apps.
Only real difference is about the OS, where one offers you a choice and another forces you to pay and develops restrictions instead of new features.
What are YOUR ideas to fix this issue? - Thank you for everyone posting solutions.
Click to expand...
Click to collapse
I don't think there is an issue, devs get paid from pushing ads, users are happy with a wide selection of apps. Some services are free some services cost money. Just my 2c

How can free apps generate revenue without ads?

I've gotten the impression (maybe incorrectly) that a lot of the developers here are against ads in apps. I don't understand that, as I believe it to be the only way to generate revenue for free apps. Possibly, it's an issue of youth and it's naivete (the idea that everything is not about about money...ha ha ha). I don't mean that to sound offensive. I was once young too, but as you age and become responsible for more than a couch, a tv and pizza, you realize that money is what makes the world go round.
Anyway...Evernote...this a pretty major app (over 9 million users) with what I'm guessing are some actual employees that support it. That means they're not doing it "for fun," and probably require those pesky little paycheck thingies. It's free and it has no ads. How does it generate revenue?
How does it generate revenue?
Click to expand...
Click to collapse
Donations of course!
But seriously, free apps generate revenue in several ways. Probably the biggest way is companion products or services. Evernote has a premium type subscription that is probably where the revenue comes from.
Even if the app and service is completely free, maybe they sell other products and the app is "Free Advertising" in that if that app is useful, other products by that company are useful and thus I'm going to buy them.
Finally, one of the newest ways that free apps are generating revenue is through in-app purchases. Look at Facebook apps for examples.
Either way, if your company is big enough, there is less of a need for ads in apps to generate funds. This forum is a group of hackers/enthusiasts/developers that for the most part do development in exchange for other people's hard work. Since we do a lot of free apps, we have the "right" to complain about ads in apps We put in the hard work and give our products away for free, and we survive, why can't everyone else!?
I kid of course.
Cheers
Any rooted user is going to be running adfree and droidwall, so looking beyond ads is probably a good idea.
joe_coolish said:
Donations of course!
But seriously, free apps generate revenue in several ways. Probably the biggest way is companion products or services. Evernote has a premium type subscription that is probably where the revenue comes from.
Even if the app and service is completely free, maybe they sell other products and the app is "Free Advertising" in that if that app is useful, other products by that company are useful and thus I'm going to buy them.
Finally, one of the newest ways that free apps are generating revenue is through in-app purchases. Look at Facebook apps for examples.
Either way, if your company is big enough, there is less of a need for ads in apps to generate funds. This forum is a group of hackers/enthusiasts/developers that for the most part do development in exchange for other people's hard work. Since we do a lot of free apps, we have the "right" to complain about ads in apps We put in the hard work and give our products away for free, and we survive, why can't everyone else!?
I kid of course.
Cheers
Click to expand...
Click to collapse
obviously the right answer so donations or simply making it a paid app will cut the ads as people downloading from the server is costly.
Sent from my Arc using XDA premium App
DONATION! Haha. I always donate to those who created apps and make my life easier.
And also not to forgot those who created ROM and KERNAL.
It is a good point to say that some of the most successful and widespread programs and sites are not profitable nor nearing it. Skype loses money, but it's been bought at high sums already twice. Twitter hasn't ever broken even, but it keeps getting lots of funds.
Therefore, if you think you have a successful app in the oven, make it, make it real good, and funding will come later.
greydarrah said:
.. Possibly, it's an issue of youth and it's naivete (the idea that everything is not about about money...ha ha ha). I don't mean that to sound offensive. I was once young too, but as you age and become responsible for more than a couch, a tv and pizza, you realize that money is what makes the world go round....
Click to expand...
Click to collapse
You don't need to be young or naive to write free software. It can be a hobby that you do in your spare time (rather than golfing or watching TV).
It can be more economical than other popular hobbies because it does not require major investment or expenditure.
I hope the free apps don't steal my credentials phone contacts or something serious and sell them to make revenue.
Sent from my LG-P500 using XDA Premium App
4silvertooth said:
I hope the free apps don't steal my credentials phone contacts or something serious and sell them to make revenue.
Sent from my LG-P500 using XDA Premium App
Click to expand...
Click to collapse
LBE Privacy Guard makes sure that they don't. A prime example of a succesful free app without ads! AdFree is another fine example of an ad-free app that doesn't cost you a penny.
greydarrah said:
Possibly, it's an issue of youth and it's naivete (the idea that everything is not about about money...ha ha ha). I don't mean that to sound offensive. I was once young too, but as you age and become responsible for more than a couch, a tv and pizza, you realize that money is what makes the world go round.
Click to expand...
Click to collapse
How much money did you get for starting this thread or for writing your other 60 posts (as of today) on this forum? See, not everything is about money. Some people write apps for the same reason that you write forum posts.
rogier666 said:
LBE Privacy Guard makes sure that they don't. A prime example of a succesful free app without ads! AdFree is another fine example of an ad-free app that doesn't cost you a penny.
How much money did you get for starting this thread or for writing your other 60 posts (as of today) on this forum? See, not everything is about money. Some people write apps for the same reason that you write forum posts.
Click to expand...
Click to collapse
Thanx for the lbe app.
Sent from my LG-P500 using XDA Premium App
BenKranged said:
Any rooted user is going to be running adfree and droidwall, so looking beyond ads is probably a good idea.
Click to expand...
Click to collapse
Not any rooted user. Some of us understand that ads generate revenue for the developer so we don't block them.
As to the OP: some less reputable developers will also collect and sell user data for revenue.
The dominant ad business model is pay-per-click. Making money from pay-per-view ads is limited to a handfull of large companies.
With hundreds of thousands of apps the audience is so diluted that most ads mainly serve to annoy the users into paying to get rid of 'em.
Blocking banner ads is not really a problem. If a small percentage of users blocks them the revenue loss is close to zero. If a large percentage blocks them then developers will have to think of something else, just like web site builders had to think of something else when every browser came with a built-in popup blocker.
Popup blockers didn't kill the internet, and AdFree won't empty the app stores.
BenKranged said:
Any rooted user is going to be running adfree and droidwall, so looking beyond ads is probably a good idea.
Click to expand...
Click to collapse
Unless you program the app to close if the user is using "ad-blocking" software, which is what i do.
And then the next generation of ad blockers will make your app believe that there's no ad blocker running.
And then the next generation of adware will try to fix this.
And then the next generation of ad blockers...
rogier666 said:
And then the next generation of ad blockers will make your app believe that there's no ad blocker running.
And then the next generation of adware will try to fix this.
And then the next generation of ad blockers...
Click to expand...
Click to collapse
That's true, but I like competing those ad blockers.
Anyone here actually believe that just because you pay money for an app it will not steal your data or open a back door to your device?
Think again!
Even in the PC world, the biggest companies like Microsoft constantly spy on their users, with the official excuse of "fighting piracy".
So pleas don't assume that application price is any guarantee of security, or for that matter, quality.
Also, there are other types of very real and very useful gain to be maid from Free Software (I am reffuring to what people often call "open source", not apps that simply cost 0$).
One example is reputation. When software companies hire developers, they often ask for years of experience, so it is hard for someone fresh to get a job in the field, and even when they do, as all starting positions the pay is relatively low.
Open source projects however, can be worth much more on programmers resume, then simply claiming X years of work for a given company.
The reason is that such projects allow potential employers to evaluate the actual skill of the applicant by looking at his work.
^^^ That is very true.
I just got hired to work for a new startup company based solely on a couple of free Android apps that I made in my spare time.
I do have years of experience in non-android programming though, but still, without those two private projects I couldn't have found a paid-job in Android...

Is it now illegal to root the Nexus 7

I read the courts reviewed the ruling of phones being legal to root, but then judged that Tablets were a different story. I heard that with tablets to legally be able to root, you have to contact the manufacturer and get permission per ruling. I know this is bogus to many people, and most of you here I assume wouldnt care either way what the courts rule. So this thread is about the legality of the issue, not really meant for debate. I just want to know if it is considered legal to root the Nexus 7, is it allowed?
Righteous Joe said:
I read the courts reviewed the ruling of phones being legal to root, but then judged that Tablets were a different story. I heard that with tablets to legally be able to root, you have to contact the manufacturer and get permission per ruling. I know this is bogus to many people, and most of you here I assume wouldnt care either way what the courts rule. So this thread is about the legality of the issue, not really meant for debate. I just want to know if it is considered legal to root the Nexus 7, is it allowed?
Click to expand...
Click to collapse
Where did you read this? Doesn't sound right to be honest, not sure how rooting a tablet would differ in a legal sense from rooting a phone, they are near enough the same device after all. Ultimately it is your device that you own so you are free to do with it as you wish, its not as if you're rooting will have a major impact on anyone else. Unless you are caught installing pirate apps which would be considered as illegal.
Writing "I read [...]" and then not following up with a source means you completely lack credibility
Maybe you are referring to the decision cited in these sources
http://www.theverge.com/2012/10/25/3556740/copyright-dmca-jailbreak-unlock-mod-ruling
https://www.federalregister.gov/art...pyright-protection-systems-for-access-control
Take your time and read these sources
Also take your time to read up on material by senior xda members on the difference between rooting your device and unlocking your bootloader. It basically renders your "illegal to root" statement completely invalid.
Moving back to the Nexus 7, although the ruling is vague as #@!$ when it comes to tablets, your not forcibly breaking open the bootloader; its practically an on/off switch on the N7--Google is not coming after you.
The common belief that jailbreaking is legal is wrong. US Digital Millennium Copyright Act was challenged, and it was accepted that it's legal to "jailbreak" a device for the purpose of carrier unlock, but not for other purpose.
As most tablets don't have 3G and thus no carrier......
Jailbreaking is illegal for iPad.
But unlocking and rooting a Nexus 7 is a whole different story. You don't need a exploit, thus you are not breaking any protection, that is why it is legal.
At least in the EU.
Sent from my GT-I9300 using xda app-developers app
There is a further distinction that can be drawn. In the case of an Android tablet it is using an OS that is in effect free of any restrictions - so you can "copy the book, change it and publish it, provided you acknowledge the source", contrast this with Microsoft and Apple ......sue,damages etc.
CrazyPeter said:
The common belief that jailbreaking is legal is wrong. US Digital Millennium Copyright Act was challenged, and it was accepted that it's legal to "jailbreak" a device for the purpose of carrier unlock, but not for other purpose.
As most tablets don't have 3G and thus no carrier......
Click to expand...
Click to collapse
You are incorrect good sir. The jaillbreaking exemption, which is no longer valid, didn't come about from a legal challenge. It was granted by the Librarian of Congress under the normal review process that takes place every three years. Furthermore, rooting phones for purposes of installing and operating legally obtained software is also exempted.
To address the OP, there's a lot of FUD going around about rooting tablets. The factual reality is that absolutely nothing at all has changed. Rest assured that, contrary to the sensationalism from some, the sky is in no danger of falling.
Sent from my Nexus 7 using Tapatalk 2
If rooting a tablet (tablet computer) is illegal, then why don't we get only user account on windows (Administrator account locked) and when we install Ubuntu, why are we not only provided with our user folder and don't have access to anything else? It's exactly the same. I don't know why Android, as basically another one of oh-so-many Linux distros would be the only one, where you are not aloud to access root folders? Linux is open source, and it is your right to be provided with root access.
And since the purpose of root on Android is not installing cracked apps (you can sideload them with enabling 'outer sources'), I see absolutely no reason, why wouldn't it be legal.
Is editing your BIOS settings on PC legal? Again, I don't see why different rules would apply to desktop then to smaller version of PC (which smartphones pretty much are).
You bought the device, it's yours. Even if you decide to take it to another carrier, you paid them, you accepted the contract, you pay penalty in case you cancel the contract sooner. Just because I bought a car in Germany, doesn't mean it's suddenly illegal to drive it in Slovenia.
iOS is different issue. It's not open source, but again I don't see why jailbreaking would be illegal. Of course, installing cracked apps is different, but that's illegal anywhere.
This kind of garbage bugs be to no end... If I buy product A, then I should be able to do what ever I want to product A how ever I want, in regards to electronics. I bought the device, and no judge is going to tell me I can not unlock/root/etc it.
Just ignore...how many movies/apps have you pirated...?
Most Android OEMs LET us root. No judge can change that, nor the open-source nature of Android as an operating system.
(Most) GNU/Linux distributions do allow us to login as the root user. Rooting an Android device is the same concept as logging on as root on GNU/Linux. It's there, you're welcome to use it, but don't blame us if something goes wrong.
---------- Post added at 07:49 PM ---------- Previous post was at 07:39 PM ----------
CrazyPeter said:
The common belief that jailbreaking is legal is wrong. US Digital Millennium Copyright Act was challenged, and it was accepted that it's legal to "jailbreak" a device for the purpose of carrier unlock, but not for other purpose.
As most tablets don't have 3G and thus no carrier......
Click to expand...
Click to collapse
How many people that jailbroke their iOS devices have not installed pirated apps? Does anyone _actually_ care about the DMCA?
In other words, you can't stop a hacker.
gnustomp said:
Just ignore...how many movies/apps have you pirated...?
Most Android OEMs LET us root. No judge can change that, nor the open-source nature of Android as an operating system.
(Most) GNU/Linux distributions do allow us to login as the root user. Rooting an Android device is the same concept as logging on as root on GNU/Linux. It's there, you're welcome to use it, but don't blame us if something goes wrong.
---------- Post added at 07:49 PM ---------- Previous post was at 07:39 PM ----------
How many people that jailbroke their iOS devices have not installed pirated apps? Does anyone _actually_ care about the DMCA?
In other words, you can't stop a hacker.
Click to expand...
Click to collapse
You know what, comments like you piss me off. I have downloaded my fair share of music, but when it comes to apps I will not pirate them. These developers work their asses off to make a decent app and then put a .99 price tag on them, and you claim that that is too damn expecive? You aren't a hacker, your just a jerk. I have bought over 150 apps on the play store, and I will continue to support the developers that work oh so hard for so little.
Good day sir.
AFAinHD said:
You know what, comments like you piss me off. I have downloaded my fair share of music, but when it comes to apps I will not pirate them. These developers work their asses off to make a decent app and then put a .99 price tag on them, and you claim that that is too damn expecive? You aren't a hacker, your just a jerk. I have bought over 150 apps on the play store, and I will continue to support the developers that work oh so hard for so little.
Good day sir.
Click to expand...
Click to collapse
No offense, but the overly white knight attitude is just as bad as the pirate attitude.
when google comes after me for supporting their os with a law suit for changing my devices gui via root would be the end of days. So, yeah won't happen. sony and microsoft just ban people and their mac ip on their console i'd assume if they ever did do anything, they could ban you from market?
I Am Marino said:
No offense, but the overly white knight attitude is just as bad as the pirate attitude.
Click to expand...
Click to collapse
Im not trying to be a white knight, I don't care about pirating music and movies, because they are overpriced as hell, but app developers work very hard for something that they put a .99 cent price tag on. There is no reason why you should not support them.
AFAinHD said:
There is no reason why you should not support them.
Click to expand...
Click to collapse
Well I see at least one reason, (which of course is valid only to some apps, not all of them), and that is usualy true to big games only:
- how long have you today to request reffunds for apps you do not like / want / can not use? 15 minutes? or is it even shorter time now? (I do not know how it is now, sorry, I only use free/ad-supported apps now)
- how long does it takes for you to download 2GB of app data? For me it is definitly a LOT longer time that 15 minutes...
- which one of these (above mentioned) apps offer some kind of trial or limited demo or something? How can you try such apps to find out whether you like it or not ?
Can you see the reason for why not to support such apps? Or at least in the first place? Of coure that it is better (for many reasons) to buy the app in the end if you like it. But you can not tell that if you can not evaluate it.
And you are wrong that these apps cost lest than $1 and thus are cheap (or at least I understand that this was something you were triing to say), most of such apps cost $5-$15, and that can be realy a lot of money if you are not from US, just because you earn $15 per hour does not mean everyone does, there are countries where people works whole day or even week for $15.
Oh, and just to be clear: I do not thing that pirating software is good thing, but sometimes it is the only way how to evaluate something. And you should be allowed do do that, right? Or would you buy a car without (at least) triing to sit in it?
All right, all right, we can just preted that the apps (or game or music or anything) which looks like we want (or need) it does not exists, but to be honest: Can you realy do that? Especially when there is no similar replacement? Or would you just happily pay any price the DEV asks, hoping that it will be usefull to you?
And one more thing:
Lot of people here is stating that court or local law or anyone forbids/encourages something - well this kind of information is totally useless if you forget to tell us in which country/region is that true.
And just to prove my point: there is a country that legaly allows downloading of audio files. Also there is a coutry that allows legaly to use pirated Operating system (namely that was true for Windows XP, not sure if they extended that somehow). Is that information usefull to you? I do not think so, unless you live there and in that case, you should already now...
..
I don't mean to derail the thread but since it's been brought up I wanted to address this quickly.
AFAinHD said:
Im not trying to be a white knight, I don't care about pirating music and movies, because they are overpriced as hell, but app developers work very hard for something that they put a .99 cent price tag on. There is no reason why you should not support them.
Click to expand...
Click to collapse
I'm going to try to do this without any self promotion.
It's funny that you say that. As a musician and songwriter who sells tracks at $.99 a piece (and have spent more money on recording equipment and music distribution to never break even), I beg to differ, and I don't have a band helping me out. I put out my albums for the cost of total tracks or maybe a dollar less for that "added value" feeling. Or I let people pay whatever they want thanks to my official online store giving me the ability to set that.
I'm not trying to start an argument or fight, but I just want to enlighten you on this point. Whether it's music or app development, creativity and hard thinking and writing\coding is involved. In both processes there is a lot of trial and error, time and money spent. The pricing of an app or a music track seems to be dependent on the value to the people as seen by the authors. Music seems more standardized whereas different apps will have different prices depending on what they do. But that does not mean there was any less effort or creativity put into music or films than an app. To offset the pirating a lot of musicians at least ask to recommend to friends in hopes that someone buys our tracks to help offset the cost of what we had to pay to put the music out there in the first place.
In the days of filesharing about 8 or so years ago I had downloaded some music. Those programs got old and died, and since then I have only bought CDs or used legal streaming services, typically from those artists I used to download music from. Now that my music is for sale in places I understand the arguments both in favor of free sharing and against it. There's a solution to both.
In either case, in the end we all just want to make even a little money for our creations. I don't think it's logical to suggest that music is overpriced because doesn't take as much effort as app development.
Back to your regularly scheduled programming....
This i totally agree with .This can stand for anything rather its music apps or even a drawing of a home done in Cad or even a book.. Think if you spend 2 years writing a Book. Then two days after its released you see it on a pirated site when its being retailed for 13.00 .While you have 2 years worth of bills piled up unpaid.Hoping the book sales. App developers often go thru this same thing. I like most everyone else did download some music in the past.NO longer would I do so . Never software and never reading material. Now if its not legal its not coming in our home or on my devices..If its to expensive the author or developer did not want to sell it.
Bottom line is support the people who Create the things that make your life enjoyable and easier to live. They wanna make ends meet to.. But its not really about the money its about what is right and wrong..
sgtpepper64 said:
I don't mean to derail the thread but since it's been brought up I wanted to address this quickly.
I'm going to try to do this without any self promotion.
It's funny that you say that, as a musician and songwriter who sells tracks at $.99 a piece (and have spent more money on recording equipment and music distribution to never break even), I beg to differ, and I don't have a band helping me out. I put out my albums for the cost of total tracks or maybe a dollar less for that "added value" feeling. Or I let people pay whatever they want thanks to my official online store giving me the ability to set that.
I'm not trying to start an argument or fight, but I just want to enlighten you on this point. Whether it's music or app development, creativity and hard thinking and writing\coding is involved. In both processes there is a lot of trial and error, time and money spent. The pricing of an app or a music track seems to be dependent on the value to the people as seen by the authors. Music seems more standardized whereas different apps will have different prices depending on what they do. But that does not mean there was any less effort or creativity put into music or films than an app. To offset the pirating a lot of musicians at least ask to recommend to friends in hopes that someone buys our tracks to help offset the cost of what we had to pay to put the music out there in the first place.
In the days of filesharing about 8 or so years ago I had downloaded some music. Those programs got old and died, and since then I have only bought CDs or used legal streaming services, typically from those artists I used to download music from. Now that my music is for sale in places I understand the arguments both in favor of free sharing and against it. There's a solution to both.
In either case, in the end we all just want to make even a little money for our creations. I don't think it's logical to suggest that music is overpriced because doesn't take as much effort as app development.
Back to your regularly scheduled programming....
Click to expand...
Click to collapse

If you were to spend 1000$ on marketing for your new app

Where and how will you spend them?
I recently launched my new app, and are receiving dozens of emails from review sites ive never heard of, claming they have hundred thousands of readers each month.
I paid 99$ for a featured review, and sent out a press release through PrMac/pc, so far nothing measurable.
So, what are the actions that REALLY works to get more downloads?
Care to colaborate on this subject?
appfactory said:
Where and how will you spend them?
I recently launched my new app, and are receiving dozens of emails from review sites ive never heard of, claming they have hundred thousands of readers each month.
I paid 99$ for a featured review, and sent out a press release through PrMac/pc, so far nothing measurable.
So, what are the actions that REALLY works to get more downloads?
Care to colaborate on this subject?
Click to expand...
Click to collapse
I guess you're trying to promote paid android app... Is that right?
anuloid said:
I guess you're trying to promote paid android app... Is that right?
Click to expand...
Click to collapse
Yes, thats correct, and its that sort of app that isnt suitable with ads all over, otherwise i would for sure have made a in app ad vers of it...
appfactory said:
Yes, thats correct, and its that sort of app that isnt suitable with ads all over, otherwise i would for sure have made a in app ad vers of it...
Click to expand...
Click to collapse
Maybe it'd be prudent to have a free version, so you can measure the demand of your app, plus use some marketing strategies to promote your app, and after then ask money for the full version (maybe via free app). Having only one app in your account will probably make people think deeper before buying, let alone bugs that might be in the app itself.
If you sure you've developed a great bug-free app that is unique and will be of a great help for users, than you can invest in promotion of the app, but I must warn you that it's some kind of tricky thing and you may lose more money than till now.
Anyway for paid apps and monetization purposes iOS is better based upon my experience. Is your app available at iTunes?
anuloid said:
Maybe it'd be prudent to have a free version, so you can measure the demand of your app, plus use some marketing strategies to promote your app, and after then ask money for the full version (maybe via free app). Having only one app in your account will probably make people think deeper before buying, let alone bugs that might be in the app itself.
If you sure you've developed a great bug-free app that is unique and will be of a great help for users, than you can invest in promotion of the app, but I must warn you that it's some kind of tricky thing and you may lose more money than till now.
Anyway for paid apps and monetization purposes iOS is better based upon my experience. Is your app available at iTunes?
Click to expand...
Click to collapse
Yes, ive been considering that myself, its amazing how cheap people are, even with "useful" apps for .99 bucks.
A bugfree app is essential free or paid, naturally... It has been going through extensive testing for 8 months, a new vers is currently in the que at Apple, but no crash bugs have been discovered so far, this vers only fixes a problem when words are split in two after a line shift, nothing else.
iOS is here, i have some promocodes if you would like to try it out
https://itunes.apple.com/us/app/medicall-app/id878350761?ls=1&mt=8
appfactory said:
Yes, ive been considering that myself, its amazing how cheap people are, even with "useful" apps for .99 bucks.
A bugfree app is essential free or paid, naturally... It has been going through extensive testing for 8 months, a new vers is currently in the que at Apple, but no crash bugs have been discovered so far, this vers only fixes a problem when words are split in two after a line shift, nothing else.
iOS is here, i have some promocodes if you would like to try it out
https://itunes.apple.com/us/app/medicall-app/id878350761?ls=1&mt=8
Click to expand...
Click to collapse
Send via pm, will try.
So what are your stats so far as for download in the App Store and on Google Play ?

Categories

Resources