Where project.properties in an Android Studio project

I followed this instructions to add the library to android studio. The final step is to add the string manifestmerger.enabled=true to project.properties . I have few .properties files like local.properties , gradle.properties , cache.properties , but I can not find the project.properties file.

+6
source share
3 answers

The step you are talking about is for Eclipse, not for Android Studio, and you only need to follow the first two instructions:

Step 1. Configure your build.gradle File applications

Make sure your repositories have a jcenter () entry:

repositories { jcenter() }

add the AAR library as a dependency like this:

dependencies { compile 'org.altbeacon:android-beacon-library:2+' }

+2
source

You can create this file manually in the project root directory, next to other .properties files.

0
source

project.properties is an Eclipse thing, and project.properties is not used in Android Studio. If you need it, you need to create it manually. But it will not be used by Android Studio.

0
source

All Articles