Error – Android resource linking failed (AAPT2 27.0.3 Daemon #0)

Had exactly the same problem. Solved it by doing the following: Searching for and replacing com.android.support:support-v4:+ with com.android.support:support-v4:27.1.0 in the platform/android directory. Also I had to add the following code to the platforms/android/app/build.gradle and platforms/android/build.gradle files: Edited to answer “Where is this com.android.support:support-v4:+ setting ?” … The setting will probably(in this case) be in one of your plugin’s .gradle … Read more

Error – Android resource linking failed (AAPT2 27.0.3 Daemon #0)

Had exactly the same problem. Solved it by doing the following: Searching for and replacing com.android.support:support-v4:+ with com.android.support:support-v4:27.1.0 in the platform/android directory. Also I had to add the following code to the platforms/android/app/build.gradle and platforms/android/build.gradle files: Edited to answer “Where is this com.android.support:support-v4:+ setting ?” … The setting will probably(in this case) be in one … Read more

Virustotal Trapmine suspicious.low.ml.score

From yesterday, when I scan my exe file that written and built by myself on Virustotal, I get this Trapmine suspicious.low.ml.score The full result can be found here https://www.virustotal.com/#/file/c2c22c7d4769104982ce9dcfc70819ec1ee6fee0ad2a0d428c5e8b2b077b518d/detection It’s very simple C# app, should I worry about anything?

What is a build tool?

Build tools are tools to manage and organize your builds, and are very important in environments where there are many projects, especially if they are inter-connected. They serve to make sure that where various people are working on various projects, they don’t break anything. And to make sure that when you make your changes, they … Read more