I just found my Unity game(that I built in Unity) on the Google Play store in a different account! I am not sure how they did it but they have:
STOLEN my game APK from Google Play
replaced my bundle identifier and ads with theirs
added location permission, calendar, phone identity, etc (to a game!)
and published in their account!
While none of these are red flags for Google Play!
Note, it is not a clone, they did not code the game, they just took my APK (of a previous version, or they did not copy my latest update yet).
It is unclear to us whether or not you are the authorized copyright agent for the content in question. Only the copyright owner or an authorized representative can file a DMCA Infringement Notice on his/her behalf. Please note that you could be liable for damages (including costs and attorneysâ fees) if you materially misrepresent that your rights have been infringed. If you or your client is not the copyright owner for this content, we cannot process your notice. Please have the copyright owner file a DMCA notice with us. If you or your client is the copyright owner, please provide more detail explaining how this is the case. Regards, The Google Team"
Do you have any advice on what path I can take to at least take this copy down? Anyway I can convince Google that this is a serious issue and it needs their attention and they should make sure this does not happen?
Anyway I can protect my game in Unity to make it harder to copy so easily?
hard to believe they havenât taken it down⌠They will be liable for your losses in revenue if they dont take it down after you sworn under penalty of perjury that the ip belongs to you
They probably cracked your java code, I doubt they hacked your scripts, since they were compiled into il2cpp library which is a binary code.
One suggestion how to avoid this, is from C# code use AndroidJava* API to get appâs package name then validate it, just donât do something simple like: packageName == "com.mycompany.product"
try to make a check more complex, since strings can be found and tweaked even in binary code.
Since if they didnât change your package name, they couldnât have re-released your game.
Iâll ask around internally, how we can better deal with this.
Yes, that is a good suggestion, I will probably do something like that in the future. It would have been awesome if something like that existed in Unity (given the circumstances) or better yet, something that will protect us developers from having our games copied, on the Google Play market.
Yes, I found my name âSaevioâ in their APK as well. Even more, when you look with Visual Studio APK analyzer you can see the exact same level asset files with the exact same sizes!
They seem to have copied an earlier version of my game (1.03), when the game had 20 levels. I have attached some screenshots for comparison (com.saevio.fungoal is my game).
Still, no further answer from Google. I really wish someone there would take the time to investigate this serious issue soon!
I just read an article the other day were UBIsoft had to sue google and apple to get a clone taken down after getting the same response from both that you received.
You may be able to reach out to UBIsoft and see if someone there could point you in a direction. The other option is to directly sue the offending company in court.
Where are âApplication.productNameâ and âApplication.companyNameâ stored in the APK? Canât they just be changed like the application identifier?
I just remembered that on February 10, 2020 when I tried to log in to my Unity account it said âYour organization has been lockedâ, to my very big surprise. I had to appeal and convince Unity that I am doing nothing wrong.
Looking at my stolen game they first published it on their account on February 21, 2020, according to AppAnnie.
Is it possible that my Unity account being locked has anything to do with them stealing my game? Anyway to check?
For Ubisoft it seems they cloned their game, in my case they stole the APK, which is much worse! Maybe we should contact Ubisoft as well.
We did contact dmca.com to help us send a Copyright Infringement Notice to Google to take the stolen game down.
We would love to sue the offending company in court, but all we have is their email address from Google Play, until Google gives us their details.
Note: I you use il2cpp, thereâs no managed assemblies in your game resources, itâs all compiled into binary code, which makes it almost impossible to tweak without the original C# source code.